Created
September 26, 2019 01:48
-
-
Save ngs/9d49c339ab591b3403f56116d7ca9c91 to your computer and use it in GitHub Desktop.
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 = "=?UTF-8?B?44GC44GE44GG44GI44GK44GC44GE44GG44GI44GK44GC44GE44GG44GI44GK?="; | |
$ar = explode("?", $str); | |
$encoded = $ar[3]; | |
$decoded = base64_decode($encoded); | |
echo $decoded; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment