gpt4 book ai didi

php - 如何在 PHP 中将 XML 转换为数组?

转载 作者:IT老高 更新时间:2023-10-28 11:43:19 24 4
gpt4 key购买 nike

我想将下面的 XML 转换为 PHP 数组。关于如何做到这一点的任何建议?

<aaaa Version="1.0">
<bbb>
<cccc>
<dddd Id="id:pass" />
<eeee name="hearaman" age="24" />
</cccc>
</bbb>
</aaaa>

最佳答案

简单!

$xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml);
$array = json_decode($json,TRUE);

关于php - 如何在 PHP 中将 XML 转换为数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6578832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com