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


PHP DOMElement hasAttribute()用法及代码示例


DOMElement::hasAttribute()函数是PHP中的内置函数,用于了解具有特定名称的属性是否作为元素的成员存在。

用法:

bool DOMElement::hasAttribute( string $name )

参数:该函数接受单个参数$name,该参数保存属性的名称。



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

下面给出的程序说明了PHP中的DOMElement::hasAttribute()函数:

程序1:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div> 
        <!-- id attribute is there --> 
        <p id=\"prog\"> HELLO </p> 
    </div> 
</root>"); 
  
// 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(); 
  
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div> 
        <!-- id attribute is missing --> 
        <p> HELLO </p> 
    </div> 
</root>"); 
  
// Get the elements 
$nodeList = $dom->getElementsByTagName('p'); 
foreach ($nodeList as $node) { 
    if(!$node->hasAttribute('id')) { 
        echo "No, id attribute isn't there."; 
    } 
} 
?>

输出:

No, id attribute isn't there.

参考: https://www.php.net/manual/en/domelement.hasattribute.php




相关用法


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