反向base64编码和gzcompress

时间:2016-02-04 18:23:50

标签: php file reverse

@file_put_contents('http://somesite.com/somefile.txt', str_replace("=", "", base64_encode(gzcompress($date_of_birth . " : " . $data['username'], FILE_APPEND);

如何反转base64编码和gzcompress并将其保存到文件中?

1 个答案:

答案 0 :(得分:1)

查看PHP文档:在gzcompress页面中,您将找到gzuncompress函数,在base64_encode中您将找到base64_decode功能。