php – 如何将8位二进制数据转换为十六进制
作者:互联网
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,data-conversion 来源: https://codeday.me/bug/20190628/1318360.html