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
相关用法
- PHP DOMElement getAttributeNodeNS()用法及代码示例
- PHP DOMElement getAttribute()用法及代码示例
- PHP DOMElement setAttribute()用法及代码示例
- PHP DOMElement setAttributeNode()用法及代码示例
- PHP DOMElement removeAttributeNS()用法及代码示例
- PHP DOMElement removeAttribute()用法及代码示例
- PHP DOMElement getAttributeNS()用法及代码示例
- PHP DOMElement getElementsByTagName()用法及代码示例
- PHP DOMElement hasAttributeNS()用法及代码示例
- PHP DOMElement __construct()用法及代码示例
- PHP DOMElement setIdAttributeNode()用法及代码示例
- PHP DOMElement setIdAttributeNS()用法及代码示例
- PHP DOMElement getElementsByTagNameNS()用法及代码示例
- PHP DOMElement setIdAttribute()用法及代码示例
- PHP DOMElement getAttributeNode()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMElement hasAttribute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。