This is a concise summary of the article Encoding and Decoding Encrypted PHP Code, which explains further the encoding/decoding examples presented here. These examples are a quick reference for those familar with PHP.
$string = 'Encoding and Decoding Encrypted PHP Code';
str_rot13($string): Rapbqvat naq Qrpbqvat Rapelcgrq CUC Pbqrstr_rot13(str_rot13($string)): Encoding and Decoding Encrypted PHP Codebase64_encode($string): RW5jb2RpbmcgYW5kIERlY29kaW5nIEVuY3J5cHRlZCBQSFAgQ29kZQ==base64_decode(base64_encode($string)): Encoding and Decoding Encrypted PHP Codegzdeflate($string): sÍKÎOÉÌKWHÌKQpI
r\ó*JRSgzinflate(gzdeflate($string)): Encoding and Decoding Encrypted PHP CodeDecoding strings that have been encoded with combinations of these functions look like this:
eval(gzinflate(base64_decode($string)));eval(gzinflate(str_rot13(base64_decode($string))));Depending on your experience level, decoding strings of this variety can be tricky. The easiest way to decode such a string is to use any reputable online decoding tool ;)
$date = Tue, 13 Jan 26 15:10:03 +0000;
str_rot13($date): Ghr, 13 Wna 26 15:10:03 +0000str_rot13(str_rot13($date)): Tue, 13 Jan 26 15:10:03 +0000base64_encode($date): VHVlLCAxMyBKYW4gMjYgMTU6MTA6MDMgKzAwMDA=base64_decode(base64_encode($date)): Tue, 13 Jan 26 15:10:03 +0000gzdeflate($date): )MÕQ04VðJÌS02S04µ24°20VÐ6 gzinflate(gzdeflate($date)): Tue, 13 Jan 26 15:10:03 +0000For more information, see the original article, Encoding and Decoding Encrypted PHP Code.