我正在尝试使用 SimpleXML 写入 XML,但我需要将 html 标签保存在我的 XML 标签中。这是我的代码:
class SimpleXMLExtended extends SimpleXMLElement
{
public function addCData($cdata_text)
{
$node= dom_import_simplexml($this);
$no = $node->ownerDocument;
$node->appendChild($no->createCDATASection($cdata_text));
}
}
$xml = new SimpleXMLExtended('<?xml version = "1.0" encoding = "UTF-8"?><xml></xml>');
$model->addChild('type')->addCData($type['type']);
$model->addChild('titleXML')->addCData($titleXML['titleXML']);
$model->addChild('features')->addCData($features['features']);
$model->addChild('options')->addCData($options['options']);
$model->addChild('gallery')->addCData($gallery['gallery']);
$model->addChild('info')->addCData($info['info']);
echo('XML: '.$xml->asXML());
我不断收到以下错误:
致命错误:在第 148 行 .../admin/addprocess.php 中的非对象上调用成员函数 addChild()
想法?