PHPhexadecimal()
函数用于将十六进制转换为十进制数。它是进制转换的一种函数。
语法
number hexdec ( string $hex_string )
参数
参数 | 说明 | 必须/可选 |
---|---|---|
hex_string | 要转换的十六进制字符串 | 必填 |
示例1
<?php
$nos="1e";
echo hexdec($nos);
?>
输出:
30
示例2
<?php
$nos="a";
echo hexdec($nos);
?>
输出:
10
示例3
<?php
$nos="11ff";
echo hexdec($nos);
?>
输出:
4607
示例4
<?php
$nos="cceeff";
echo hexdec($nos);
?>
输出:
13430527