反向base64编码和gzcompress
reverse base64 encode and gzcompress
@file_put_contents('http://somesite.com/somefile.txt', str_replace("=", "", base64_encode(gzcompress($date_of_birth . " : " . $data['username'], FILE_APPEND);
如何反转base64编码和gzcompress并将其保存到文件中?
查看 PHP 文档:在 gzcompress
page you'll find the gzuncompress
function, in the base64_encode
you'll find the base64_decode
函数中。
@file_put_contents('http://somesite.com/somefile.txt', str_replace("=", "", base64_encode(gzcompress($date_of_birth . " : " . $data['username'], FILE_APPEND);
如何反转base64编码和gzcompress并将其保存到文件中?
查看 PHP 文档:在 gzcompress
page you'll find the gzuncompress
function, in the base64_encode
you'll find the base64_decode
函数中。