Skip to content

Instantly share code, notes, and snippets.

@ngs
Created September 26, 2019 01:48
Show Gist options
  • Save ngs/9d49c339ab591b3403f56116d7ca9c91 to your computer and use it in GitHub Desktop.
Save ngs/9d49c339ab591b3403f56116d7ca9c91 to your computer and use it in GitHub Desktop.
<?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