将1和0的字符串转换为二进制值,然后压缩,PHP
我有一个字符串,例如: PHP 中的“10001000101010001” 我用 gzcompress 来压缩它,但它压缩的是 ASCII 等价的。 我想将字符串压缩为二进制数据,而不是 ASCII 二进制数据。
基本上我有两个问题:
- 如何将 1 和 0 的列表转换为二进制文件
- ,使用 gzcompress 压缩生成的二进制文件,
谢谢。
I have a string for example: "10001000101010001" in PHP
I am compressing it with gzcompress, but it compresses ASCII equivalent.
I would like to compress the string as if it were binary data not it ASCII binary equivalent.
Bascially I have 2 problems:
- how to convert a list of 1s and 0s into binary
- compress the resulting binary with gzcompress
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 bindec() 函数。
基本上,您需要类似(干编码,请在盲目信任它之前自行测试)
将指定格式的字符串转换为字节字符串,然后您可以
gzcompress()
它随意。互补函数是这样的
Take a look at the bindec() function.
Basically you'll want something like (dry-coded, please test it yourself before blindly trusting it)
to turn a string of the format you specified into a byte string, after which you can
gzcompress()
it at will.The complementary function is something like