PHP base_convert() 函数
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP base_convert() 函数相关的知识,希望对你有一定的参考价值。
16进制转8进制
<?php $hex = "E196"; echo base_convert($hex,16,8); ?>
8进制数转换为10进制数
<?php $oct = "0031"; echo base_convert($oct,8,10); ?>
8进制数转换为16进制数
<?php $oct = "364"; echo base_convert($oct,8,16); ?>
https://www.runoob.com/php/func-math-base-convert.html
以上是关于PHP base_convert() 函数的主要内容,如果未能解决你的问题,请参考以下文章