PHP base_convert() 函数详解
2021-04-02 23:28
标签:php express clu str git 区分 bit hex 进制 base_convert — 将数字进行任意进制之间的转换 返回一个字符串,对应 number 以 tobase 进制的表示。number 本身的进制由 frombase 指定。frombase 和 tobase 都只能在 2 和 36 之间(包括 2 和 36)。$number中高于十进制的数字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35,且不区分大小写。 英文单词,来自官网页面 a number on which a system of counting and expressing numbers is built up, for example 10 in the decimal system and 2 in the binary system PHP base_convert() 函数详解 标签:php express clu str git 区分 bit hex 进制 原文地址:https://www.cnblogs.com/jiaoran/p/12546993.html定义
用法
base_convert ( string $number , int $frombase , int $tobase ) : string
示例
附录
下一篇:jsp快速入门
文章标题:PHP base_convert() 函数详解
文章链接:http://soscw.com/index.php/essay/71596.html