首頁 >後端開發 >PHP問題 >php如何將漢字轉為ascii

php如何將漢字轉為ascii

藏色散人
藏色散人原創
2020-08-24 09:22:522556瀏覽

php將漢字轉ascii的方法:先建立一個php範例檔;然後透過封裝好的「public function strtoascii($str){}」方法將漢字轉為ascii即可。

php如何將漢字轉為ascii

推薦:《PHP影片教學

直接使用吧,函數就在下面,自己封裝的,親測正確無誤

將字串(中文同樣實用)轉為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);
    }

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

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