📜  PHP | DOMElement hasAttribute()函数

📅  最后修改于: 2022-05-13 01:56:25.220000             🧑  作者: Mango

PHP | DOMElement hasAttribute()函数

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

句法:

bool DOMElement::hasAttribute( string $name )

参数:此函数接受一个包含属性名称的参数$name

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

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

方案一:

loadXML("

    
                 

HELLO

    
");    // 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.

方案二:

loadXML("

    
                 

HELLO

    
");    // 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