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


PHP DOMNamedNodeMap count()用法及代碼示例


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



相關用法


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