php將十進制轉換成十六進制的方法:1、使用dechex()函數(shù),語法“dechex($number)”;2、使用base_convert()函數(shù),語法“base_convert($number,10,16)”。
本教程操作環(huán)境:windows7系統(tǒng)、php7.1版、dell g3電腦
php將十進制轉換成十六進制
1、使用dechex()函數(shù)
dechex($number)函數(shù)把十進制數(shù)$number轉換為十六進制數(shù)。
<?phpecho dechex(\”30\”) . \”<br>\”;echo dechex(\”10\”) . \”<br>\”;echo dechex(\”1587\”) . \”<br>\”;echo dechex(\”70\”);?>
2、使用base_convert() 函數(shù)
base_convert() 函數(shù)在任意進制之間轉換數(shù)字。
base_convert(number,frombase,tobase);
number 必需。規(guī)定要轉換的數(shù)。
frombase 必需。規(guī)定數(shù)字原來的進制。介于 2 和 36 之間(包括 2 和 36)。高于十進制的數(shù)字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35。
tobase 必需。規(guī)定要轉換的進制。介于 2 和 36 之間(包括 2 和 36)。高于十進制的數(shù)字用字母 a-z 表示,例如 a 表示 10,b 表示 11 以及 z 表示 35。
<?phpheader(\”content-type:text/html;charset=utf-8\”);$num1=10;$num2=47;echo \”十進制 \”.$num1.\” 轉換成十六進制 \”.base_convert($num1,10,16).\”<br>\”; echo \”十進制 \”.$num2.\” 轉換成十六進制 \”.base_convert($num2,10,16).\”<br>\”; ?>
推薦學習:《php視頻教程》