DOMNodeList::count()函數是PHP中的一個內置函數,用於獲取列表中的節點數。
用法:
int DOMNodeList::count( void )
參數:此函數不接受任何參數。
返回值:此函數返回列表中的節點數。
以下示例說明了PHP中的DOMNodeList::count()函數:
範例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');
// Count the elements
echo $elements->count();
?>
輸出:
2
範例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('h1', 'Another GeeksforGeeks');
// Append the nodes
$element->appendChild($text1);
$element->appendChild($text2);
// Get all elements with tag name 'h1'
$elements = $document->getElementsByTagName('h1');
// Count the elements
echo 'Before removing:';
echo $elements->count() . "<br>";
// Remove a child
$element->removeChild($text2);
// Get all elements with tag name 'h1'
$elements = $document->getElementsByTagName('h1');
// Count the elements
echo 'After removing:';
echo $elements->count();
?>
輸出:
Before removing:2 After removing:1
參考: https://www.php.net/manual/en/domnodelist.count.php
相關用法
- PHP DOMNodeList item()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP Ds\Set count()用法及代碼示例
- PHP count()用法及代碼示例
- PHP SplHeap count()用法及代碼示例
- PHP Ds\Vector count()用法及代碼示例
- PHP SplDoublyLinkedList count()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP SimpleXMLElement count()用法及代碼示例
- PHP ArrayObject count()用法及代碼示例
- PHP Ds\PriorityQueue count()用法及代碼示例
- PHP Ds\Stack count()用法及代碼示例
- PHP Ds\Queue count()用法及代碼示例
- PHP SplObjectStorage count()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNodeList count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。