PHP | DOMDocument createAttributeNS()函数
DOMDocument::createAttributeNS()函数是PHP中的一个内置函数,用于创建具有关联命名空间的新属性节点。
句法:
DOMAttr DOMDocument::createAttributeNS( string $namespaceURI, string $qualifiedName )
参数:该函数接受上面提到的两个参数,如下所述:
- $namespaceURI:此参数保存命名空间的 URI。
- $qualifiedName此参数保存属性的标记名称和前缀。例如:前缀:标记名。
返回值:此函数在成功时返回一个新的 DOMAttr 对象,在失败时返回 FALSE。
下面的程序说明了PHP中的 DOMDocument::createAttributeNS()函数:
程序:
abc@geeksforgeeks.org
+91-987654321
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";
?>
输出:
abc@geeksforgeeks.org
+91-987654321
abc@geeksforgeeks.org
+91-987654321
参考: https://www. PHP.net/manual/en/domdocument.createattributens。 PHP