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


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


DOMElement::hasAttributeNS()函数是PHP中的一个内置函数,用于了解名为localName的特定命名空间中的属性是否作为元素的成员存在。

用法:

bool DOMElement::hasAttributeNS( string $namespaceURI, string $localName )

参数:该函数接受上述和以下描述的两个参数:


  • $namespaceURI:它指定名称空间URI。
  • $localName:它指定本地名称。

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

以下示例说明了PHP中的DOMElement::hasAttributeNS()函数:

范例1:

<?php 
   
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div xmlns:x=\"my_namespace\"> 
        <x:h1 x:style=\"color:red;\"> 
        Hello, this is my red heading. 
        </x:h1> 
        <x:h1 x:style=\"color:green;\"> 
        Hello, this is my green heading.  
        </x:h1> 
        <x:h1 x:style=\"color:blue;\">  
        Hello, this is my blue heading. 
        </x:h1> 
    </div> 
    <div xmlns:y=\"another_namespace\"> 
        <y:h1> Hello, this is my new red heading. </y:h1> 
        <y:h1> Hello, this is my new green heading. </y:h1> 
        <y:h1> Hello, this is my new blue heading. </y:h1> 
    </div> 
</root>"); 
   
// Get the elements 
$nodeList = $dom->getElementsByTagName('h1'); 
   
$i = 0; 
   
foreach ($nodeList as $node) { 
    if($node->hasAttributeNS('my_namespace', 'style')) { 
        $i++; 
    } 
} 
echo "Yes, there are total of $i style  
               attributes inside my_namespace"; 
?>

输出:

Yes, there are total of 3 style attributes inside my_namespace.

范例2:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div xmlns:x=\"my_namespace\"> 
        <x:h1 x:id=\"color:red;\"> 1 </x:h1> 
        <x:h1 x:id=\"color:green;\"> 2 </x:h1> 
        <x:h1 x:id=\"color:blue;\"> 3 </x:h1> 
    </div> 
    <div xmlns:y=\"another_namespace\"> 
        <y:h1> 1 </y:h1> 
        <y:h1> 2 </y:h1> 
        <y:h1> 3 </y:h1> 
    </div> 
</root>"); 
  
// Get the elements 
$nodeList = $dom->getElementsByTagName('h1'); 
  
$i = 0; 
  
foreach ($nodeList as $node) { 
    if($node->hasAttributeNS('another_namespace', 'id')) { 
        $i++; 
    } 
} 
echo "There are total of $i id attributes 
                         inside another_namespace."; 
?>

输出:

There are total of 0 id attributes inside another_namespace.

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



相关用法


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