Answers for "php convert to base64"

PHP
3

how do decode base64 php

base64_decode('base64-string-goes-here');
Posted by: Guest on June-05-2020
0

base64 enocode php

<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base64_decode($str);
?>
Posted by: Guest on October-13-2021
0

php base convert

<?php
$hexadecimal = 'a37334';
echo base_convert($hexadecimal, 16, 2);
?>
Posted by: Guest on August-02-2021

Code answers related to "php convert to base64"

Browse Popular Code Answers by Language