php中有 bin2hex方法,但没有 hex2bin方法,以下简单实现 hex2bin :phpfunction hex2bin($data) { $len = strlen($data); return pack("H" . $len, $data); } ?>