Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

base64_decode

 base64_decode(string $string, bool $strict = false): string|false
 // Example
 // base64_decode('VGhpcyBpcyBhIHN0cmluZw==')
 // Result: This is a string
   
 // For Encoding
 base64_encode(string $string): string
 // base64_encode('This is a string')
 // Result: VGhpcyBpcyBhIHN0cmluZw==
Source by www.php.net #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
2+5 =