(PHP 3, PHP 4 )
返回与 hex_string 参数所表示的十六进制数等值的的十进制数。hexdec() 将一个十六进制字符串转换为十进制数。所能转换的最大数值为 7fffffff,即十进制的 2147483647。
hexdec() 将遇到的所有非十六进制字符替换成 0。这样,所有左边的零都被忽略,但右边的零会计入值中。
例子 1. hexdec() 例子
<?phpvar_dump(hexdec("See"));var_dump(hexdec("ee"));// both print "int(238)"var_dump(hexdec("that"));var_dump(hexdec("a0"));// both print int(160)?>
参见 dechex()。