Home  >  Article  >  Backend Development  >  How to convert string to binary in php

How to convert string to binary in php

藏色散人
藏色散人Original
2020-07-25 10:41:185139browse

How to convert php to binary: first create a PHP sample file; then define a "StrToBin" method; then list each character in the method body, and implement binary conversion through functions such as "base_convert"; Finally, run the file.

How to convert string to binary in php

Recommended: "PHP Tutorial"

php converts strings into binary data strings

/**
    * 将字符串转换成二进制
    * @param type $str
    * @return type
    */
    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);
    }
    /**
    * 将二进制转换成字符串
    * @param type $str
    * @return type
    */
    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);
    }

The above is the detailed content of How to convert string to binary in php. For more information, please follow other related articles on the PHP Chinese website!

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