當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DOMNodeList item()用法及代碼示例


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




相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNodeList item() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。