我在JavaScript中使用LZString来压缩一些JSON数据,然后将其发布到我的PHP程序中。 (http://pieroxy.net/blog/pages/lz-string/index.html)
我有二进制代码所以我想在PHP中解压缩,我使用此存储库中的LZString.php
:https://github.com/nullpunkt/lz-string-php/blob/master/src/LZString.php
当我使用compress()
方法时,我会收到错误,但是当我使用decompressFromBase64()
方法时,没有任何错误,但这个funstion返回空字符串!
如何在php中解压缩LZString?