次の 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;