2017-05-31 96 views
-1

正在試圖訪問簡單的XML不能以XML訪問屬性

SimpleXMLElement Object 
(
    [@attributes] => Array 
     (
      [Index] => 21 
     ) 

    [Data] => Hello world 
) 

我想訪問索引屬性的屬性。我試着下面的代碼,但它不是 工作對我來說

$xml->attributes()->Index 
+0

向其添加'echo' – Ghost

+1

嘗試'echo $ xml-> attributes ['Index'];'' – Edwin

回答

0

你去那裏我的朋友:

$xml->attributes()['Index'] 

有時候,我發現我不得不把結果當它是一個字符串。例如:

(string)$xml->attributes()['Index']