2013-10-12 89 views
6

$xml是一個SimpleXML對象。如何獲取SimpleXML對象的第一個元素?

print_r($xml->Title); 

輸出SimpleXMLElement Object ([0] => K&H 3093 Extreme Weather Kitty Pad with Fleece Cover)

如何訪問的第一個元素?

print_r($xml->Title[0]); 

什麼都不輸出!

+0

' - > {0}'...... – Wrikken

+0

返回:SimpleXMLElement對象() –

+0

'$ XML->標題 - > {0}' –

回答

12

嘗試

echo (string) $xml->Title; 

你必須將它轉換爲字符串。