如何用適當的UTF-8替換所有數字實體?將數字實體轉換爲UTF-8
例如:在源字符串這樣表示:
$string1 = "The Devil's in the Details";
$string2 = "Dónde estás, hermano?";
我需要
echo string1; //OUTPUTS Should be: The Devil's in the details
echo string2; //OUTPUTS Should be: Dónde Estás, Hermano?
更換我試圖html_entity_decode()
但沒有奏效;有任何想法嗎?
什麼'html_entity_decode'嗎? – Ryan
你好,首先,字符串的來源是什麼?如果它是一個文件,可能你必須嘗試轉換文件,而不是一個PHP函數 – Carlos