PHP解码急

时间:2013-07-09 06:59:09

标签: php special-characters

我有字符串:

$str = "Końcówki";

我的目标字符串是:

$str = "Końcówki";

echo html_entity_decode($d); // Końc�wki

echo utf8_encode(html_entity_decode($d)); // KoÅcówki

如何解码它而不会崩溃其他特殊字符?

1 个答案:

答案 0 :(得分:2)

该角色需要解码为一些字符集。该字符串已包含在专用字符集中编码的字符。您需要告诉html_entities_decode解码到同一个字符集。目前两者之间存在不匹配。

html_entity_decode($str, ENT_COMPAT, 'your charset here')