我将以下 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;