本文介绍了如何在PHP中将一个看起来像十六进制数字的字符串转换为实际的十六进制数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个字符串,看起来像这个7a
,我想将它转换为十六进制数字7A。我已经尝试过使用pack和unpack,但是这给了我每个单独字符的十六进制表示。
我有一个字符串,看起来像这个7a
,我想将它转换为十六进制数字7A。我已经尝试过使用pack和unpack,但是这给了我每个单独字符的十六进制表示。
可能是最简单的方法以整数形式存储
$ num = hexdec('7A');
I have a string that looks like this "7a"
and I want to convert it to the hex number 7A. I have tried using pack and unpack but that is giving me the hex representation for each individual character.
Probably the simplest way to store that as an integer is hexdec()
$num = hexdec( '7A' );
这篇关于如何在PHP中将一个看起来像十六进制数字的字符串转换为实际的十六进制数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!