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

php string to binary conversion

大家讲道理
Release: 2016-11-09 14:27:26
Original
1070 people have browsed it

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("aaaccc天空");
  echo BinToStr(&#39;1100001 1100001 1100001 1100011 1100011 1100011 111001011010010010101001 111001111010100110111010&#39;);
Copy after login

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!