PHP simplexml实体

FFi*_*ish 3 php entities simplexml

这里有什么事?

$string = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
    <album>
        <img src="002.jpg" caption="w&aacute;ssup?" />
    </album>
XML;

$xml = simplexml_load_string($string);
// $xmlobj = simplexml_load_file("xml.xml"); // same thing

echo "<pre>";
var_dump($xml);
echo "</pre>";
Run Code Online (Sandbox Code Playgroud)

错误:

警告:simplexml_load_string()[function.simplexml-load-string]:实体:第5行:解析器错误:实体'aacute'未定义

Pek*_*ica 14

&aacute不是XML实体 - 您正在考虑HTML.

特殊字符通常在XML中"按原样"使用 - html_entity_decode()输入数据(不要忘记指定UTF-8作为字符集)应该可以解决这个问题:

$string = html_entity_decode($string, ENT_QUOTES, "utf-8");
Run Code Online (Sandbox Code Playgroud)