Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从一台服务器(PHP 5.3)向数千个运行各种不同 PHP 版本、Web 服务器、模块和操作系统(所有 PHP 4.3+)的不同服务器发送相当大的数据块。
我发送的数据是带有大量空格等的格式化文本。所以我想在发送之前对其进行压缩,并在结束时对其进行解压缩。
是否有本地 PHP 解决方案可以让我这样做?
如果不是,大多数端点支持的解决方案是什么?
它不一定要压缩数据,但要为通过 HTTP 传输做好准备。urlencode() 是否保留换行符?
您可以使用gzcompress和gzuncompress函数,这些函数从 PHP 4.0.1 开始可用