在线文档教程
PHP
HTML

DOMNodelist::item

DOMNodelist::item

(PHP 5, PHP 7)

DOMNodelist :: item - 检索索引指定的节点

描述

DOMNode DOMNodelist::item ( int $index )

检索indexDOMNodeList对象内指定的节点。

提示

如果您需要知道集合中的节点数,请使用DOMNodeList对象的length属性。

参数

index

进入集合的节点索引。

返回值

indexDOMNodeList中第th个位置的节点,或者NULL如果它不是有效的索引。

例子

示例#1遍历表中的所有条目

<?php $doc = new DOMDocument; $doc->load('book.xml' $items = $doc->getElementsByTagName('entry' for ($i = 0; $i < $items->length; $i++) {     echo $items->item($i)->nodeValue . "\n"; } ?>

或者,您可以使用foreach,这是一种更方便的方法:

<?php foreach ($items as $item) {     echo $item->nodeValue . "\n"; } ?>

上面的例子将输出:

Title Author Language ISBN The Grapes of Wrath John Steinbeck en 0140186409 The Pearl John Steinbeck en 014017737X Samarcande Amine Maalouf fr 2253051209

← DOMNodeList

DOMNotation →