扫码关注官方订阅号
使用:
$xml = simplexml_load_string($content); $array = json_decode(json_encode((array) $xml), 1);
这种方式将 XML 解析为数组时,对于:
和
content
都可以正确解析,但对于这种:
就无法得到 name 属性,而只能获得 content 内容了。
请问有什么好的方法可以应对这种问题吗?
$xml = simplexml_load_string($content); foreach($xml->attributes() AS $a => $b) { echo "$a = $b <br />"; }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部