Base64 decode function in PHP


<?php
$str ="VGhpcyBpcyBteSBmaXJzdCBhcHBsaWNhdGlvbiBpbiBwaHA=";
$decode_data = base64_decode($str);
echo $decode_data;
/*Output */
Result :- This is my first application in php
?>