实现PHP中的hex2bin
php中有 bin2hex方法,但没有 hex2bin方法,以下简单实现 hex2bin :
<?php
function hex2bin($data) {
$len = strlen($data);
return pack("H" . $len, $data); }
?>
本文地址:http://www.phprm.com/code/c7fc7a315db0f74a188dab0217505f09.html
转载随意,但请附上文章地址:-)