0
我想打印,我從我的數據庫中檢索國家的許多字符串,但我有一個神祕的卡拉科特每次當我使用時間:神祕人物
utf8_encode($string); the out put is (Algérie , Arménie ,Azerbaïdjan ,Biélorussie)
utf8_decode($string); -> (Algérie , Arménie , Azerba?djan , Bi?lorussie)
htmlentities($string); -> (Alg�©rie , Arm�©nie ,Azerbaïdjan, ...)
我試圖把在頭:
header ("Content-Type:text/html;charset=ISO-8859-1"); ->Arménie , Azerbaïdjan
和
header ("Content-Type:text/html;charset=utf-8"); -> Azerba�djan
i的的配置已檢查我的數據庫和我發現
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_unicode_ci';
任何想法?
沒有所有這些編碼的東西,它會發出什麼? –
Algérie,Arménie,Azerbaïdjan –