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


PHP DOMDocument createAttributeNS()用法及代码示例


DOMDocument::createAttributeNS()函数是PHP中的内置函数,用于创建具有关联名称空间的新属性节点。

用法:

DOMAttr DOMDocument::createAttributeNS( string $namespaceURI, string $qualifiedName )

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


  • $namespaceURI:此参数保存名称空间的URI。
  • $qualifiedName此参数保存标签名称和属性的前缀。例如:prefix:tagname。

返回值:成功时此函数返回一个新的DOMAttr对象,失败时返回一个FALSE。

以下示例程序旨在说明PHP中的DOMDocument::createAttributeNS()函数:

程序:

<?php 
  
// Store the XML document to the source 
$source = <<<XML 
<?xml version="1.0" encoding="UTF-8"?> 
<root><contact><email>abc@geeksforgeeks.org</email> 
<mobile>+91-987654321</mobile></contact></root> 
XML; 
  
// Create a new document 
$domDocument = new DOMDocument( '1.0' ); 
  
// Load the XML file 
$domDocument->loadXML( $source ); 
      
// Use createAttributeNS() function to create new attribute 
// node with an associated namespace 
$attrNS = $domDocument->createAttributeNS( 
                '{namespace}', 'info:cont_info' ); 
  
// Create XML document and display it 
echo $domDocument->saveXML() . "\n"; 
  
// Assign value to the createAttributeNS 
$attrNS->value = 'https://www.geeksforgeeks.org/about/contact-us/'; 
  
$domDocument->getElementsByTagName( 'contact' ) 
            ->item(0)->appendChild( $attrNS ); 
      
// Create XML document and display it 
print $domDocument->saveXML() . "\n"; 
      
?>
输出:
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:info="{namespace}">
    <contact>
        <email>abc@geeksforgeeks.org</email>
        <mobile>+91-987654321</mobile>
    </contact>
</root>

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:info="{namespace}">
    <contact info:cont_info=
        "https://www.geeksforgeeks.org/about/contact-us/">
        <email>abc@geeksforgeeks.org</email>
        <mobile>+91-987654321</mobile>
    </contact>
</root>

参考: https://www.php.net/manual/en/domdocument.createattributens.php



相关用法


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