如何通过SimpleXML访问自定义XML元素。如果我有:
<rss>
<custom:element></custom:element>
</rss>
现在,当我将这些元素传递给simplexml_load_string()
时,这些元素就被忽略了。
答案 0 :(得分:1)
在获得结果之前,您需要为此添加一个字符串。 E.g。
<?php
$xml = "<rss>
<custom:element>hello world</custom:element>
</rss>";
$result = simplexml_load_string($xml);
print_r($result);
请参阅http://www.php.net/manual/en/function.simplexml-load-string.php