PHP program to convert base64 into the simple string

Here, we are going to learn how to convert base64 into the simple string in PHP?
Submitted by Nidhi, on November 22, 2020 [Last updated : March 14, 2023]

Base64 To String Conversion

Here, we will convert a base64 into a simple string using base64_decode() function.

PHP code to convert base64 into the simple string

The source code to convert base64 into a simple string is given below. The given program is compiled and executed successfully.

<?php
//PHP program to convert base64 into the simple string.
$base64 = "d3d3LmluY2x1ZGVoZWxwLmNvbQ==";
$text = base64_decode($base64);
printf("Simple Text: [%s]", $text);
?>

Output

Simple Text: [www.includehelp.com]

Explanation

Here, we created a local variable $base64, which is initialized with "d3d3LmluY2x1ZGVoZWxwLmNvbQ==". After that, we converted the base64 into a simple string using base64_decode() function and then printed the simple text string on the webpage on the webpage.

More PHP Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.