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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。