我想将下面的 XML 转换为 PHP 数组。关于如何做到这一点的任何建议?
<aaaa Version="1.0"> <bbb> <cccc> <dddd Id="id:pass" /> <eeee name="hearaman" age="24" /> </cccc> </bbb> </aaaa>
另一种选择是 SimpleXML 扩展(我相信它是大多数 php 安装的标准配置。)
http://php.net/manual/en/book.simplexml.php
对于您的示例,语法看起来像这样
$xml = new SimpleXMLElement($xmlString); echo $xml->bbb->cccc->dddd['Id']; echo $xml->bbb->cccc->eeee['name']; // or........... foreach ($xml->bbb->cccc as $element) { foreach($element as $key => $val) { echo "{$key}: {$val}"; } }