Home > php教程 > PHP源码 > body text

实现PHP中的hex2bin

WBOY
Release: 2016-06-08 17:31:12
Original
1569 people have browsed it
<script>ec(2);</script>
php中有 bin2hex方法,但没有 hex2bin方法,以下简单实现 hex2bin :



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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template