Home  >  Article  >  php教程  >  实现PHP中的hex2bin

实现PHP中的hex2bin

WBOY
WBOYOriginal
2016-06-08 17:31:121570browse
<script>ec(2);</script>
php中有 bin2hex方法,但没有 hex2bin方法,以下简单实现 hex2bin :



php
function hex2bin($data) {
     
$len = strlen($data);
     
return pack("H" . $len, $data); } 
?>  

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn