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
相關用法
- PHP DOMDocument loadHTMLFile()用法及代碼示例
- PHP DOMDocument createAttribute()用法及代碼示例
- PHP DOMDocument __construct()用法及代碼示例
- PHP DOMDocument createComment()用法及代碼示例
- PHP DOMDocument normalizeDocument()用法及代碼示例
- PHP DOMDocument loadXML()用法及代碼示例
- PHP DOMDocument createElement()用法及代碼示例
- PHP DOMDocument createElementNS()用法及代碼示例
- PHP DOMDocument createCDATASection()用法及代碼示例
- PHP DOMDocument load()用法及代碼示例
- PHP DOMDocument loadHTML()用法及代碼示例
- PHP DOMDocument save()用法及代碼示例
- PHP DOMDocument saveXML()用法及代碼示例
- PHP DOMDocument getElementsByTagName()用法及代碼示例
- PHP DOMDocument importNode()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | DOMDocument createAttributeNS() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。