首頁  >  文章  >  後端開發  >  php如何實作將字串轉為ASCII

php如何實作將字串轉為ASCII

王林
王林原創
2021-10-15 16:42:163218瀏覽

php實作將字串轉為ASCII的方法:【public function strtoascii($str{ $str=mb_convert_encoding($str,'GB2312');$change_after='';for(...】 。

php如何實作將字串轉為ASCII

本文操作環境:windows10系統、php 7、thinkpad t480電腦。

字串與ASCII之間的轉換:

下面的函數是已經封裝好的,可以直接拿來使用。

1、將字串(中文同樣實用)轉為ascii(注意:我預設目前我們的php檔案環境是UTF-8,如果是GBK的話mb_convert_encoding操作就不需要)

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);
    }

2、將ascii轉為字串(中文同樣實用)(注意:我預設目前我們的php檔案環境是UTF-8,如果是GBK的話mb_convert_encoding操作就不需要)

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;);
    }

推薦學習:php訓練

以上是php如何實作將字串轉為ASCII的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn