回显 PHP pack() 结果...正常吗?

发布于 2024-11-03 18:24:26 字数 166 浏览 0 评论 0原文

此代码:

<?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 技术交流群。

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

发布评论

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

评论(3

月光色 2024-11-10 18:24:26

是的,这很正常。您将一个 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.

谜兔 2024-11-10 18:24:26

为什么?字符串(在单字节字符集中)的“二进制”表示正是该字符串,因此在这种情况下不需要转换任何内容。

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.

澉约 2024-11-10 18:24:26

如果您将 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()

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