从SimpleXML访问@attribute

从SimpleXML访问@attribute,第1张

从SimpleXML访问@attribute

您可以通过在XML节点上调用attribute()函数来获取XML元素的属性。然后,您可以var_dump函数的返回值。

php.net上的更多信息
http://php.net/simplexmlelement.attributes

该页面的示例代码:

$xml = simplexml_load_string($string);foreach($xml->foo[0]->attributes() as $a => $b) {    echo $a,'="',$b,""n";}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5114650.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存