xref: /PHP-7.4/ext/xmlwriter/tests/011.phpt (revision 782352c5)
1--TEST--
2XMLWriter: libxml2 XML Writer, write_attribute_ns function
3--CREDITS--
4Mauricio Vieira <mauricio [at] @mauriciovieira [dot] net>
5#testfest PHPSP on 2014-07-05
6--SKIPIF--
7<?php
8if (!extension_loaded("xmlwriter")) die("skip");
9?>
10--FILE--
11<?php
12
13$xw = xmlwriter_open_memory();
14xmlwriter_set_indent($xw, TRUE);
15xmlwriter_set_indent_string($xw, '   ');
16xmlwriter_start_document($xw, '1.0', "UTF-8");
17xmlwriter_start_element($xw, 'root');
18xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1');
19xmlwriter_write_attribute_ns($xw, 'ns1','att1', 'urn:ns1', '<>"\'&');
20xmlwriter_write_element($xw, 'chars', "special characters: <>\"'&");
21xmlwriter_end_element($xw);
22xmlwriter_end_document($xw);
23// Force to write and empty the buffer
24$output = xmlwriter_flush($xw, true);
25print $output;
26?>
27--EXPECT--
28<?xml version="1.0" encoding="UTF-8"?>
29<root>
30   <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
31      <chars>special characters: &lt;&gt;&quot;'&amp;</chars>
32   </ns1:child1>
33</root>
34