我想這樣做外國字符在我的網站上正確顯示。php - 外國字符顯示不正確
當我嘗試寫: 「葡萄牙語」 它會輸出這樣的:
Português
我使用的代碼是:
$name = htmlspecialchars(stripslashes($f['forum_name']));
我也試過這樣:
$name = html_entity_decode(stripslashes(stripslashes($f['forum_desc'])));
但那給了我:
Português
我在做什麼錯?
編輯:$ f是這個未來:
$sf=mysql_query("SELECT * FROM forum_cats WHERE forum_type='0' AND forum_type_id='".$h['forum_id']."'");
http://stackoverflow.com/questions/279170/utf-8-all-the-way-through –
'$ f ['forum_name'])''從哪裏來? –
是什麼讓你覺得'stripslashes()'會有所幫助?這與問題完全無關。 – Spudley