回显 PHP pack() 结果...正常吗?
此代码:
<?php
$string = "I love chicken.";
$binary = pack("a15", $string);
echo $binary;
?>
输出“我爱鸡”。这正常吗?它不应该输出一些二进制乱码吗?
This code:
<?php
$string = "I love chicken.";
$binary = pack("a15", $string);
echo $binary;
?>
Outputs "I love chicken". Is that normal? Shouldn't it output some binar-ish gibberish?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这很正常。您将一个 15 个字符的字符串打包到一个 15 字节的 NULL 填充字符串中,因此不会出现“乱码”(因为您的原始字符串“以这种方式”存储在内存中。)您会看到乱码例如,如果您尝试打包整数等。
Yes, that's normal. You're packing a 15-character string into a 15 byte NULL padded string, so there's no "gibberish" (because your original string is stored in memory "that way".) You'd see gibberish if, for example you tried to pack integers, etc.
为什么?字符串(在单字节字符集中)的“二进制”表示正是该字符串,因此在这种情况下不需要转换任何内容。
Why? The "binary" representation of a string (in a single-byte charset) is exactly that string, so there is no need to convert anything in this case.
如果您将 ASCII 字符串打包为相同长度的 ASCII 字符串,则不会。
如果将 a15 更改为 a16,则 pack 会用 null 填充输出,如果您 echo,则这些空值不可见,但如果您执行 var_dump() 则空值是可见的
Not if you're packing an ASCII string as an ASCII string of the same length.
If you change a15 to a16, then pack will pad the output with nulls, which aren't visible if you echo, but are if you do var_dump()