简单文本无损压缩 PHP/JavaScript

发布于 2024-09-07 07:37:55 字数 312 浏览 1 评论 0原文

有没有办法无损压缩包含以下字符(共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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉态萌生 2024-09-14 07:37:55

发送聊天服务器时不需要压缩。那不是你的带宽。

要在聊天服务器发送时节省流量,只需启用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文