Home  >  Article  >  Backend Development  >  How to convert php Chinese to ascii code

How to convert php Chinese to ascii code

藏色散人
藏色散人Original
2021-06-17 10:23:493788browse

How to convert Chinese to ascii code in php: first set the current php file environment to UTF-8; then convert Chinese to ascii code through "public function strtoascii($str){...}".

How to convert php Chinese to ascii code

The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer

php How to convert Chinese ascii code?

php converts strings to ASCII, php converts Chinese character strings to ASCII, and vice versa

Use it directly, the function is below, encapsulated by yourself, dear The test is correct

A: Convert the string (also practical for Chinese) to ascii (note: I default that our current php file environment is UTF-8, if it is GBK, the mb_convert_encoding operation is not required)

public function strtoascii($str){
        $str=mb_convert_encoding($str,'GB2312');
        $change_after='';
        for($i=0;$i<strlen($str);$i++){
            $temp_str=dechex(ord($str[$i]));
            $change_after.=$temp_str[1].$temp_str[0];
        }
        return strtoupper($change_after);
    }

B: Convert ascii to string (also practical for Chinese) (Note: I default that our current php file environment is UTF-8. If it is GBK, the mb_convert_encoding operation is not required)

public function asciitostr($sacii){
        $asc_arr= str_split(strtolower($sacii),2);
        $str=&#39;&#39;;
        for($i=0;$i<count($asc_arr);$i++){
            $str.=chr(hexdec($asc_arr[$i][1].$asc_arr[$i][0]));
        }
        return mb_convert_encoding($str,&#39;UTF-8&#39;,&#39;GB2312&#39;);
    }

Recommended learning: "PHP video tutorial"

The above is the detailed content of How to convert php Chinese to ascii code. 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