object(SimpleXMLElement)[1]
public 'book' =>
配列 (サイズ = 3)
0 =>
object(SimpleXMLElement)[2]
public '@attributes' =>
array (size=1)
...
public 'name' => 文字列 'PHP' (length=3)
public 'price' => 文字列 '20.0' (長さ=4)
1 =>
object(SimpleXMLElement)[3]
public '@attributes' =>
array (size=1)
...
public 'name' => 文字列 'XML' (length=3)
public 'price' => 文字列 '20.3' (長さ=4)
2 =>
object(SimpleXMLElement)[4]
public '@attributes' =>
array (size=1)
...
public 'name' => 文字列 'C#' (length=2)
public 'price' => 文字列 '20.1' (長さ=4)
$xml = file_get_contents("book.xml");
$simple = 新しい SimpleXMLElement($xml);
ということは、$simple['book']['name'];これを使用することはできません、$simple->book->namethis样呢のみを使用できます。
回复讨论(解决方案)
因是对象!对象 哦 明白了 谢谢大神