Last active
May 19, 2022 11:07
-
-
Save cp-sumi-k/86eb6f4beed485b1ab5ae4be97ac5259 to your computer and use it in GitHub Desktop.
https://blog.canopas.com/php-useful-encoding-and-decoding-functions-you-need-to-know-210e523a065f - uudecode
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 = '?5V4@;6]V92!F87-T(&%N9"!B<F5A:R!T:&EN9W,A(0``'; | |
error_log(convert_uudecode($str)); | |
# output : We move fast and break things!! | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment