Home »
PHP »
PHP programs
PHP program to convert a string into base64
Here, we are going to learn how to convert a string into base64 in PHP?
Submitted by Nidhi, on November 22, 2020 [Last updated : March 14, 2023]
String To Base64 Conversion
Here, we will convert a string into base64 using base64_encode() function.
PHP code to convert a string into base64
The source code to convert the string into base64 is given below. The given program is compiled and executed successfully.
<?php
//PHP program to convert the string into base64.
$text = "www.includehelp.com";
$base64 = base64_encode($text);
printf("Base64: [%s]", $base64);
?>
Output
Base64: [d3d3LmluY2x1ZGVoZWxwLmNvbQ==]
Explanation
Here, we created a local variable $text, which is initialized with "www.includehelp.com". After that, we converted the string to base64 using the base64_encode() function and then printed the base64 value on the webpage on the webpage.
More PHP Programs »