PHP CRC32 长度输出
有什么可以使 PHP CRC32 函数的返回长度发生变化吗?
谢谢!
Is there anything that can make the returned length of the PHP CRC32 function to vary?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,根据定义,CRC32 有 32 位。
您只能改变其表示形式。例如,虽然它可以用 4 个 8 位字节表示(因此适合 PHP int),但您可能希望在字符串中以 10 为基数表示该数字,然后它可以有 10 个字符(无符号),因为2^32-1 是 4294967295。
No, by definition a CRC32 has 32-bits.
You can only vary its representation. For instance, while it can be represented with 4 8-bit bytes (and hence fits in a PHP int), you may wish to represent that number in base 10 in a string, and then it can have 10 characters (unsigned), since 2^32-1 is 4294967295.