文件名称:php中base_convert()进制数字转换函数实例
文件大小:35KB
文件格式:PDF
更新时间:2024-01-09 14:41:32
AS base c
本文实例讲述了php中base_convert()函数进制数字转换的实现方法。分享给大家供大家参考。具体如下:
语法:base_convert(number,frombase,tobase)
参数
描述
number
必需,原始值.
frombase
必需,数字原来的进制.
tobase
必需,要转换的进制.
PHP实例代码如下:
复制代码 代码如下:$hexadecimal=’a37334′;
echo base_convert($hexadecimal,16,2); //转换为二进制输出101000110111001100110100
echo “
”