PHP 教學 - 常見亂碼問題
PHP亂碼問題,UTF-8亂碼常見問題小結 於 HTML head 指定此頁編碼為 UTF-8 <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> PHP 送 Header 告訴瀏覽器這頁是 UTF-8 編碼 <?php header("Content-Type:text/html; charset=utf-8"); ?> 設定 Apache 送出頁面預設語系 UTF-8 (比較不建議用此方法) addDefaultCharset UTF-8 # 不過建議這行要包在 Directory 或 VirtualHost 內, 才不會影響到其它網頁. <Directory "/var/*/blog"> addDefaultCharset UTF-8 </Directory> ...