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

把字符内容转换为二进制

PHP中文网
Release: 2016-05-25 17:04:58
Original
1076 people have browsed it

把字符内容转换为二进制

<?php
header("charset=utf-8;");

function StrToBin($str){
    //1.列出每个字符
    $arr = preg_split(&#39;/(?<!^)(?!$)/u&#39;, $str);
    //2.unpack字符
    foreach($arr as &$v){
        $temp = unpack(&#39;H*&#39;, $v);
        $v = base_convert($temp[1], 16, 2);
        unset($temp);
    }

    return join(&#39; &#39;,$arr);
}

function BinToStr($str){
    $arr = explode(&#39; &#39;, $str);
    foreach($arr as &$v){
        $v = pack("H".strlen(base_convert($v, 2, 16)), base_convert($v, 2, 16));
    }

    return join(&#39;&#39;, $arr);
}

echo StrToBin("哈哈hhh123");
echo &#39;
&#39;;
echo BinToStr(StrToBin("哈哈hhh123"));
Copy after login

                   

 以上就是把字符内容转换为二进制的内容,更多相关内容请关注PHP中文网(www.php.cn)!

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