(PHP 3, PHP 4, PHP 5)
返回一字符串,包含有给定 number 参数的十六进制表示。所能转换的最大数值为十进制的 4294967295,其结果为 "ffffffff"。
例子 1. dechex() 范例
<?phpecho dechex(10) . "\n";echo dechex(47);?>
上例将输出:
a 2f
参见 hexdec(),decbin(),decoct() 和 base_convert().。