标签:php express clu str git 区分 bit hex 进制
base_convert — 将数字进行任意进制之间的转换
base_convert ( string $number , int $frombase , int $tobase ) : string
返回一个字符串,对应 number 以 tobase 进制的表示。number 本身的进制由 frombase 指定。frombase 和 tobase 都只能在 2 和 36 之间(包括 2 和 36)。$number中高于十进制的数字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35,且不区分大小写。
<?php
$hexadecimal = ‘A37334‘;
echo base_convert($hexadecimal, 16, 2);
?>
英文单词,来自官网页面
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 express clu str git 区分 bit hex 进制
原文地址:https://www.cnblogs.com/jiaoran/p/12546993.html