有人可以建议一个好的和稳定的类来编码和解码PHP中的XML吗?
在php.net上找到了这个例子,但无法使其工作..没有错误消息返回
$sxe = new SimpleXMLElement();
$sxe->addAttribute('type', 'documentary');
$movie = $sxe->addChild('movie');
$movie->addChild('title', 'PHP2: More Parser Stories');
$movie->addChild('plot', 'This is all about the people who make it work.');
$characters = $movie->addChild('characters');
$character = $characters->addChild('character');
$character->addChild('name', 'Mr. Parser');
$character->addChild('actor', 'John Doe');
$rating = $movie->addChild('rating', '5');
$rating->addAttribute('type', 'stars');
echo $sxe->asXML();
答案 0 :(得分:6)
SimpleXML可能是最简单的。例如:
<root>
<node>
<sub>Text</sub>
</node>
</root>
$xml = new SimpleXMLElement('xml_file.xml', 0, true);
echo $xml->node->sub; // Displays "Text"
修改强>
为了响应您的代码无效,您需要在类的启动中包含一个根节点:
$sxe = new SimpleXMLElement('<root />');
答案 1 :(得分:-1)
通过编码/解码你的意思是写/读? XML不是代码,只是标记。但是,有一种叫做XML的字符/实体编码。
PHP基本上有两个类或库可供使用。 SimpleXML和DOMElement。你必须检查你的phpinfo以查看它们是否已启用,php.ini是否启用它们。