DOMNamedNodeMap::count()函數是PHP中的內置函數,用於獲取Map中的節點數。它可用於計算元素的屬性。
用法:
int DOMNamedNodeMap::count( void )
參數:此函數不接受任何參數。
返回值:此函數返回一個整數值,該值包含映射中的節點數。
以下示例說明了PHP中的DOMNamedNodeMap::count()函數:
範例1:在此示例中,我們將計算元素的屬性。
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<root>
<html>
<h1 id=\"first\"
class=\"first\"
style=\"color:blue\">
Geeksforgeeks
</h1>
</html>
</root>");
// Get the elements
$node = $dom->getElementsByTagName('h1')[0];
// Get the attribute count
$attributeCount = $node->attributes->count();
echo 'No of attributes => ' . $attributeCount;
?>
輸出:
No of attributes => 3
範例2:在此示例中,我們將檢查count函數是否通過更改屬性數量來獲取最新的屬性數量。
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<root>
<html>
<h1 id=\"first\"
class=\"first\">
Geeksforgeeks
</h1>
<h2> Second heading </h2>
</html>
</root>");
// Get the elements
$node = $dom->getElementsByTagName('h1')[0];
echo "Before the addition of attributes:<br>";
// Get the attribute count
$attributeCount = $node->attributes->count();
echo 'No of attributes => ' . $attributeCount;
// Set the id attribute
$node->setAttribute('new', 'value');
echo "<br>After the addition of attributes:<br>";
// Get the attribute count
$attributeCount = $node->attributes->count();
echo 'No of attributes => ' . $attributeCount;
?>
輸出:
Before the addition of attributes: No of attributes => 2 After the addition of attributes: No of attributes => 3
參考: https://www.php.net/manual/en/domnamednodemap.count.php
相關用法
- PHP DOMNamedNodeMap getNamedItemNS()用法及代碼示例
- PHP DOMNamedNodeMap item()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP count()用法及代碼示例
- PHP Ds\Set count()用法及代碼示例
- PHP Ds\Queue count()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP Ds\Vector count()用法及代碼示例
- PHP SimpleXMLElement count()用法及代碼示例
- PHP ArrayObject count()用法及代碼示例
- PHP Ds\PriorityQueue count()用法及代碼示例
- PHP SplHeap count()用法及代碼示例
- PHP Ds\Deque count()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP SplObjectStorage count()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNamedNodeMap count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。