gpt4 book ai didi

php - 如何将 8 位二进制数据转换为十六进制

转载 作者:可可西里 更新时间:2023-10-31 23:19:44 24 4
gpt4 key购买 nike

print_r(bin2hex("11111111"));
echo '</br>';
print_r(bindec("11111111"));

结果

  • 131313131313131
  • 255

I want a hexadecimal 16 byte value to do aes encryption.How is the conversion from binary to hex happening in php.I am getting incorrect value using the function.Also when i convert an array of hexadecimal values to string the byte length changes

最佳答案

您得到了正确的结果,但这不是您想要的。 bin2hex()返回十六进制表示的 ASCII 字符串。手册中的引述:

Returns an ASCII string containing the hexadecimal representation of str.

所以如果你想要十六进制数,你可以使用这个:

print_r(dechex(bindec("11111111")));

关于php - 如何将 8 位二进制数据转换为十六进制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28673368/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com