PHP - xmlwriter_write_attribute_ns() 函数



定义和用法

XML 是一种用于在网络之间共享数据的标记语言,XML 既可供人类阅读,也可供机器阅读。XMLWriter 扩展内部具有 libxml xmlWriter API,用于编写/创建 XML 文档的内容。由此生成的 XML 文档是非缓存的且仅向前。

xmlwriter_write_attribute_ns() 函数用于创建完整的命名空间属性标签。

语法

xmlwriter_write_attribute_ns($writer, $prefix, $name, $uri, $value);

参数

序号 参数和描述
1

writer(必填)

这是 XMLWriter 类的对象,表示您要修改/创建的 XML 文档。

2

Prefix(必填)

这是表示命名空间前缀的字符串值。

3

name(必填)

这是表示属性名称的字符串值。

4

uri(必填)

这是指定命名空间 uri 的字符串值。

5

content(必填)

这是表示属性值的字符串。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。

PHP 版本

此函数首次引入于 PHP 5 版本,并在所有后续版本中均有效。

示例

以下示例演示了 xmlwriter_write_attribute_ns() 函数的用法:

<?php
   //Creating an XMLWriter
   $writer = new XMLWriter();
   $uri = "result.xml";

   //Opening a writer
   $writer = xmlwriter_open_uri($uri);

   //Starting the document
   xmlwriter_start_document($writer);

   //Starting an element
   xmlwriter_start_element($writer, 'Msg');

   //Creating the namespaced attribute
   xmlwriter_write_attribute_ns($writer, 'ns', 'attr', 'test.uri', 'test_value'); 

   //Adding text to the element
   xmlwriter_text($writer, 'Welcome to Tutorialspoint');  

   //Ending the element
   xmlwriter_end_element($writer);

   //Ending the document
   xmlwriter_end_document($writer);
?>

这将生成以下 XML 文档:

<?xml version="1.0"?>
<Msg ns:attr="test_value" xmlns:ns="test.uri">Welcome to Tutorialspoint</Msg>

示例

以下是此函数在面向对象风格中的示例:

<?php
   //Creating an XMLWriter
   $writer = new XMLWriter();

   //Opening a writer
   $uri = "result.xml";
   $writer->openUri($uri);

   //Starting the document
   $writer->startDocument();

   //Starting an element
   $writer->startElement('Msg');

   //Creating the namespaced attribute
   $writer->writeAttributeNs('ns', 'attr', 'test.uri', 'test_value'); 

   //Adding text to the element
   $writer->text('Welcome to Tutorialspoint');  

   //Ending the element
   $writer->endElement();

   //Ending the document
   $writer->endDocument();
?>

这将生成以下 XML 文档:

<?xml version="1.0"?>
<Msg ns:attr="test_value" xmlns:ns="test.uri">Welcome to Tutorialspoint</Msg>
php_function_reference.htm
广告