php中文轉ascii的方法:先建立一個PHP範例檔;然後定義一個「strtoascii」方法;接著使用「mb_convert_encoding」函數轉換編碼;最後執行該檔案並輸出轉換結果即可。
推薦:《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中文網其他相關文章!