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