0

如何使用 PHP 或 smarty 将其转换为可读字符串?

(必须很容易,因为我看到这个编辑器将其转换为可读的字符串而不做任何事情)

标题中的示例来自此字符串:

 Wer ist am Wochenende alles an der "Määs" anzutreffen? 

字符串的正下方是正确的:

Wer ist am Wochenende alles an der "Määs" anzutreffen?

我在尝试包含 facebook RSS 提要时遇到了这个问题。如果你想要更多这些字符串,还有更多这些字符串,我们去:

http://www.facebook.com/feeds/page.php?format=atom10&id=113971395284126

4

2 回答 2

1

实际上,看起来像这样,您需要htmlspecialchars_decode()而不是html_entity_decode();

使用 htmlspecialchars_decode() 你会得到“Määs”,使用 html_entity_decode() 你会得到“Määs”。

于 2013-10-16T08:28:45.610 回答
0

尝试html_entity_decode()将其更改为可读字符串。

于 2013-10-16T08:24:50.810 回答