m.form1.cn

PHP中10进制与16进制互转

PHP PHPcode 18479

10转16进制

dechex(52558);
或
gmp_strval(52558,16);


16转10进制

hexdec('0xcd4e');