我正在使用 ini 文件实现语言模块。所以我将 lable 及其值插入到 ini 文件中,但插入的值就像 ??? ???用阿拉伯语。
我已经添加了
//in header section
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
//in php section
ini_set('default_charset','utf-8');
header("Content-Type: text/html; charset=UTF-8");
而且我在为ini文件制作字符串时添加了以下行
utf8_encode($elem);
我想添加并更新已经添加的 ini 值。请告诉我如何做所有事情。
提前致谢。