Php编码文本解码


Php coded text decoding

成一个字符串,我有一些编码文本。

...
für
...

这是一个德语单词"für"。

如何将整个文本转换为德语文本?

感谢您的帮助。

这是一个特定于 HTML 的编码,因此:

echo html_entity_decode('für'); // returns für

http://php.net/manual/en/function.html-entity-decode.php