DOMNodeList::item()函数是PHP中的内置函数,用于检索由索引指定的节点。
用法:
DOMNode DOMNodeList::item( int $index )
参数:该函数接受一个包含索引的参数$index。
返回值:此函数返回由索引指定的DOMNode。
以下示例说明了PHP中的DOMNodeList::item()函数:
范例1:
<?php
// Create a new DOMDocument instance
$document = new DOMDocument();
// Create a div element
$element = $document->appendChild(new DOMElement('div'));
// Create a h1 element
$text1 = new DOMElement('h1', 'GeeksforGeeks');
// Create another h1 elements
$text2 = new DOMElement('h1', 'Another GeeksforGeeks');
// Append the nodes
$element->appendChild($text1);
$element->appendChild($text2);
// Get all elements with tag name 'h1'
$elements = $document->getElementsByTagName('h1');
// Get the text of first element
echo $elements->item(0)->textContent;
?>
输出:
GeeksforGeeks
范例2:
<?php
// Create a new DOMDocument instance
$document = new DOMDocument();
// Create a div element
$element = $document->appendChild(new DOMElement('div'));
// Create a h1 element
$text1 = new DOMElement('h1', 'GeeksforGeeks');
// Create another h1 elements
$text2 = new DOMElement('h2', 'Another GeeksforGeeks');
// Append the nodes
$element->appendChild($text1);
$element->appendChild($text2);
// Get all elements
$elements = $document->getElementsByTagName('*');
// Get the name of tag of third element
echo $elements->item(2)->nodeName;
?>
输出:
h2
参考: https://www.php.net/manual/en/domnodelist.item.php
相关用法
- PHP DOMNodeList count()用法及代码示例
- PHP DOMNamedNodeMap item()用法及代码示例
- HTML DOM item()用法及代码示例
- CSS CSSStyleDeclaration item()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNodeList item() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。