PHP Base64 encoding decoding a variable

To convert a PHP variable to Base64 String we can make use of base64_encode() function,

Syntax : String base64_encode(String $var);

Code Examples :
<?php

    $data = "This is the text to be converted to Base64 string @ $ % ^ & * #@ %& &* &^( " ;

    $base64EncodedData = base64_encode($data);
  
    echo $base64EncodedData;

?>

Output : VGhpcyBpcyB0aGUgdGV4dCB0byBiZSBjb252ZXJ0ZWQgdG8gQmFzZTY0IHN0cmluZyBAICQgJSBeICYgKiAjQCAlJiAmKiAmXigg



This is not an AI-generated article but is demonstrated by a human on an M1 Mac running macOS Sonoma 14.0.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!