Quantcast
Channel: 逝去的青春
Viewing all articles
Browse latest Browse all 34

php十六进制转十进制,十进制转十六进制

$
0
0
 $key = hexdec($key) + 100;//16转10
            $key = $key - 100;
            $key = dechex($key);//10转16

define('GLOBALS_KEY', $key);




本例子是将16进制转为10进制进行加减运算,再由10进制转为16进制,完成进制转换.转换前和转换后的值一样


Viewing all articles
Browse latest Browse all 34

Trending Articles