PHP hexdec() 函数
PHP hexdec() 函数
实例
把十六进制转换为十进制:
<?php
echo hexdec("1e") . "<br>";
echo hexdec("a") . "<br>";
echo hexdec("11ff") . "<br>";
echo hexdec("cceeff");
?>
echo hexdec("1e") . "<br>";
echo hexdec("a") . "<br>";
echo hexdec("11ff") . "<br>";
echo hexdec("cceeff");
?>
运行实例 »
定义和用法
hexdec() 函数把十六进制数转换为十进制数。
提示:如需把十进制转换为十六进制,请查看 dechex() 函数。
语法
hexdec(hex_string);
参数 | 描述 |
---|---|
hex_string | 必需。规定要转换的十六进制字符串。 |
技术细节
返回值: | hex_string 的十进制值。 |
---|---|
返回类型: | Float / Integer |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 类型比较
- PHP If Else 语句
- PHP Switch 语句
- PHP $_GET 变量
- PHP 多维数组
- PHP 文件上传
- PHP Session
- PHP 异常处理
- PHP array_chunk() 函数
- PHP array_column() 函数
- PHP array_diff() 函数
- PHP array_filter() 函数
- PHP array_intersect_assoc() 函数
- PHP array_map() 函数
- PHP array_pop() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP natcasesort() 函数
- PHP next() 函数
- PHP shuffle() 函数