Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含元素列表的 xml 文件。我想按索引检索特定元素。我环顾了一会儿,没有发现任何对我有用的东西。
我原以为这会起作用,但它没有:
echo($xml->children()[0]);
我在 php 方面不是很有经验,来自 C# 背景,所以任何帮助表示赞赏。
数组取消引用是在 PHP 5.4 中添加的,因此您的代码(可能)将与该版本一起使用。
如果您坚持使用旧版本,只需尝试一下
$children = $xml->children(); echo $children[0];