当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMNode hasAttributes()用法及代码示例


DOMNode::hasAttributes()函数是PHP中的内置函数,用于检查节点是否具有属性。

用法:

bool DOMNode::hasAttributes( void )

参数:此函数不接受任何参数。


返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

以下示例说明了PHP中的DOMNode::hasAttributes()函数:

范例1:

<?php 
   
// Create a new DOMDocument 
$dom = new DOMDocument(); 
    
// Create a paragraph element 
$element = $dom->createElement('p', 
      'This is the paragraph element!'); 
   
// Set the attribute 
$element->setAttribute('id', 'my_id'); 
   
// Append the child 
$dom->appendChild($element); 
    
// Get the elements 
$nodeList = $dom->getElementsByTagName('p'); 
foreach ($nodeList as $node) { 
    if($node->hasAttribute('id')) { 
        echo "Yes, id attribute is there."; 
    } 
} 
?>

输出:

Yes, id attribute is there.

范例2:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Create a paragraph element 
$element = $dom->createElement('p',  
         'This is the paragraph element!'); 
  
// Set the attribute 
$element->setAttribute('class', 'my_class'); 
  
// Append the child 
$dom->appendChild($element); 
   
// Get the elements 
$nodeList = $dom->getElementsByTagName('p'); 
foreach ($nodeList as $node) { 
    if(!$node->hasAttribute('id')) { 
        echo "No, id attribute is not there."; 
    } 
} 
?>

输出:

No, id attribute is not there.

参考: https://www.php.net/manual/en/domnode.hasattributes.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode hasAttributes() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。