當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。