首頁 >後端開發 >PHP問題 >如何解決php imagettftext 亂碼問題

如何解決php imagettftext 亂碼問題

藏色散人
藏色散人原創
2020-10-14 16:54:512592瀏覽

php imagettftext亂碼的解決方法:先透過「mb_convert_encoding」函式進行轉碼;然後透過語句「mb_convert_encoding($str, "UTF-8", "GB2312");」輸出即可。

如何解決php imagettftext 亂碼問題

推薦:《PHP影片教學

php 使用ImageTTFText 中文出現亂碼:

#可以用

string mb_convert_encoding ( string $str, string $to_encoding [, mixed $from_encoding] )

來進行轉碼,再輸出

$str = mb_convert_encoding($str, "UTF-8", "GB2312");

確認一下檔案是不是utf-8的。

以上是如何解決php imagettftext 亂碼問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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