Last active
May 19, 2022 11:06
-
-
Save cp-sumi-k/3e25c24283ffb64aa8b8ee0a660da1de to your computer and use it in GitHub Desktop.
https://blog.canopas.com/php-useful-encoding-and-decoding-functions-you-need-to-know-210e523a065f - base64_decode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$str = 'V2UgZG8gd2hhdCBtYXR0ZXJzIHRoZSBtb3N0ISE='; | |
echo base64_decode($str); | |
# output : We do what matters the most!! | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment