php imagettftext亂碼的解決方法:先透過「mb_convert_encoding」函式進行轉碼;然後透過語句「mb_convert_encoding($str, "UTF-8", "GB2312");」輸出即可。
推薦:《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中文網其他相關文章!