gpt4 book ai didi

php - simplexml,返回具有相同标签的多个项目

转载 作者:可可西里 更新时间:2023-11-01 00:00:46 26 4
gpt4 key购买 nike

我将以下 XML 文件加载到 php simplexml 中。

<adf>
<prospect>
<customer>
<name part="first">Bob</name>
<name part="last">Smith</name>
</customer>
</prospect>
</adf>

使用

$customers = new SimpleXMLElement($xmlstring); 

这将返回“Bob”,但我如何返回姓氏?

echo $customers->prospect[0]->customer->contact->name;

最佳答案

您可以访问不同的<name>使用数组样式语法按编号排列元素。

$names = $customers->prospect[0]->customer->name;

echo $names[0]; // Bob
echo $names[1]; // Smith

事实上,您已经<prospect> 做了这件事元素!

另见 Basic SimpleXML Usage在手册中。


如果你想根据一些标准选择元素,那么XPath是要使用的工具。

$customer   = $customers->prospect[0]->customer;
$last_names = $customer->xpath('name[@part="last"]'); // always returns an array
echo $last_names[0]; // Smith

关于php - simplexml,返回具有相同标签的多个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11976453/

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