简单文本无损压缩 PHP/JavaScript
有没有办法无损压缩包含以下字符(共88个)的文本?
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789!@#$%&*()-_+=;:'"<,>.?/[]{}
我正在聊天,但我不希望它浪费太多带宽(我用了几个小时的旧聊天浪费了 800mb)。
文本将在 javascript 中压缩(当在聊天输入框中输入时),发送到 php(将它们保存在某处),然后在请求时(聊天中的 ajax)以压缩格式发送回来,并用 javascript 解压缩。
Is there a way for me to lossless compress text with the following characters(88 in total)?
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789!@#$%&*()-_+=;:'"<,>.?/[]{}
I am making a chat but I don't want it to be wasting so much bandwidth(an old chat I used a few hours wasted 800mb).
The text would be compressed in javascript(when typed in to chat input box), sent to php(which saves them somewhere), then sent back when requested(ajax in chat) in the compressed format and decompressed with javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发送到聊天服务器时不需要压缩。那不是你的带宽。
要在从聊天服务器发送时节省流量,只需启用 GZip 压缩。
You don't need compression when sending to the chat server. That's not your bandwidth.
To save traffic when sending from the chat server, just enable GZip compression.