欧美AV无码一区二区,麻豆+无码+国产在线+观看,欧美狂躁少妇XXXX高潮无码,美女扒开屁股让男人桶免费观看,极品粉嫩国产18尤物在线播放

DOMNodeList::item

(PHP 5, PHP 7, PHP 8)

DOMNodeList::item Retrieves a node specified by index

說(shuō)明

public DOMNodeList::item(int $index): DOMNode|DOMNameSpaceNode|null

Retrieves a node specified by index within the DOMNodeList object.

小技巧

If you need to know the number of nodes in the collection, use the length property of the DOMNodeList object.

參數

index

Index of the node into the collection.

返回值

The node at the indexth position in the DOMNodeList, or null if that is not a valid index.

范例

示例 #1 Traversing all the entries of the table

<?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";
}

?>

Alternatively, you can use foreach, which is a much more convenient way:

<?php

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

?>

以上例程會(huì )輸出:

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

欧美AV无码一区二区,麻豆+无码+国产在线+观看,欧美狂躁少妇XXXX高潮无码,美女扒开屁股让男人桶免费观看,极品粉嫩国产18尤物在线播放