php 进制转换base_convert
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 进制转换base_convert相关的知识,希望对你有一定的参考价值。
16进制 转为 8进制
base_convert(number,frombase,tobase);
参数 | 描述 |
---|---|
number | 必需。规定要转换的数。 |
frombase | 必需。规定数字原来的进制。介于 2 和 36 之间(包括 2 和 36)。高于十进制的数字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35。 |
tobase | 必需。规定要转换的进制。介于 2 和 36 之间(包括 2 和 36)。高于十进制的数字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35。 |
<?php $hex = "E196"; echo base_convert($hex,16,8); ?>
参考:
https://www.runoob.com/php/func-math-base-convert.html
以上是关于php 进制转换base_convert的主要内容,如果未能解决你的问题,请参考以下文章