尝试创建xml文件并收到警告。
警告' SimpleXMLElement :: addChild():未终止的实体引用Brantford Jonson'
所以当我尝试打开xml文件时出错
This page contains the following errors:
error on line 3 at column 4: StartTag: invalid element name
Below is a rendering of the page up to the first error.,
我认为我的错误与此php警告有关。
这是相关代码
if ($value instanceof Zend_Config) {
$child = $xml->addChild($key);
$this->_addBranch($value, $child, $xml);
} else {
$xml->addChild($key, (string) $value);
}
你能帮我解释一下这个错误发生的原因。试过这样的事情
if ($value instanceof Zend_Config) {
$child = $xml->addChild($key);
$this->_addBranch($value, $child, $xml);
} else {
$xml->$key((string) htmlspecilalchars($value));
}
答案 0 :(得分:6)
当有&符号时,我遇到了错误"&"在我的XML中。也许尝试用htmlspecialchars()转义字符串。