我对俄语字符和recode_string函数有点问题。
$str = "И в этом вся моя вина (And Only That école & Can Be My Blame)";
echo recode_string("UTF-8..flat", $string);
给我“只有那种ecole&可能是我的责备”而不是(而且只有那种ecole&可能是我的责备)
任何人都可以帮我解决这个问题吗? 感谢
答案 0 :(得分:0)
你可以试试像
这样的东西mb_convert_encoding('И в этом вся моя вина (And Only That école & Can Be My Blame)', 'windows-1251', 'utf8');
但你必须知道改变windows-1251我觉得
或尝试iconv()
donutdan4114说
答案 1 :(得分:0)
您在第二行使用 $ string ,但在第一行中定义了 $ str 。