用PHP的SimpleXML访问处理指令
非常简单--有没有办法使用SimpleXML访问处理指令节点的数据?我知道SimpleXML很简单;因此,它有许多限制,主要是处理混合内容节点。
示例:
Test.xml
<test>
<node>
<?php /* processing instructions */ ?>
</node>
</test>
Parse.php
$test = simplexml_load_file('Test.xml');
var_dump($test->node->php); // dumps as a SimpleXMLElement, so it's sorta found,
// however string casting and explicitly calling
// __toString() yields an empty string
那么,这仅仅是SimpleXML的简单性造成的技术限制,还是有办法呢?如有必要,我将转换为SAX或DOM,但SimpleXML会更好。
解决方案
问题在于?Php?>被认为是一个标签...因此,它被解析为一个大的标记元素。您需要做的是:
$xml = file_get_contents('myxmlfile.xml');
$xml = str_replace('<?php', '<![CDATA[ <?php', $xml);
$xml = str_replace('?>', '?> ]]>', $xml);
$xml = simplexml_load_string($xml, "SimpleXMLElement", LIBXML_NOCDATA);
我不完全确定这是否会奏效,但我认为它会奏效。测试一下...
相关文章