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


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


DOMElement::setIdAttributeNS()函数是PHP中的内置函数,用于将给定本地名称和名称空间URI指定的属性声明为ID类型。

用法:

void DOMElement::setIdAttributeNS( string $namespaceURI, 
string $localName, bool $isId )

参数:此函数接受上述和以下所述的三个参数:


  • $namespaceURI:它指定名称空间URI。
  • $localName:它指定本地名称。
  • $isId:它指定是否要让名称为ID类型。

返回值:此函数不返回任何内容。

异常:如果该节点是只读节点,则此函数将抛出DOM_NO_MODIFICATION_ALLOWED_ERR;如果name不是该元素的属性,则此函数将抛出DOM_NOT_FOUND。

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

范例1:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Enable validate on parse 
$dom->validateOnParse = true; 
    
// Create an element 
$element = $dom->createElementNS("my_namespace", "x:p",  
                         'Hello, this is my paragraph.'); 
    
// Add the node to the dom 
$newnode = $dom->appendChild($element); 
    
// Set the attribute 
$newnode->setAttributeNS("my_namespace", "id", "my_value"); 
  
// Set that attribute as id 
$element->setIDAttributeNS("my_namespace", 'id', true); 
    
echo $dom->saveXML(); 
?>

输出:您可以按Ctrl + U查看DOM。

范例2:

<?php 
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Enable validate on parse 
$dom->validateOnParse = true; 
    
// Create an element 
$element = $dom->createElementNS("my_namespace", "x:p",  
                                       'GeeksforGeeks'); 
    
// Add the node to the dom 
$newnode = $dom->appendChild($element); 
    
// Set the attribute 
$newnode->setAttributeNS("my_namespace", "id", 
                                       "geeksforgeeks"); 
  
// Set that attribute as id 
$element->setIDAttributeNS("my_namespace", 'id', true); 
  
// Get the text of element with id='geeksforgeeks' 
// just to see if it works 
$value = $dom->getElementById('geeksforgeeks')->textContent; 
echo $value; 
?>

输出:

GeeksforGeeks

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



相关用法


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