xref: /PHP-5.5/ext/xmlwriter/tests/012.phpt (revision 8afe869c)
1--TEST--
2XMLWriter: libxml2 XML Writer, full_end_element 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");
9if (LIBXML_VERSION < 20617) die("skip: libxml2 2.6.17+ required");
10?>
11--FILE--
12<?php
13/* $Id$ */
14
15$xw = xmlwriter_open_memory();
16xmlwriter_set_indent($xw, TRUE);
17xmlwriter_set_indent_string($xw, '   ');
18xmlwriter_start_document($xw, '1.0', "UTF-8");
19xmlwriter_start_element($xw, 'root');
20xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1');
21xmlwriter_write_attribute_ns($xw, 'ns1','att1', 'urn:ns1', '<>"\'&');
22xmlwriter_write_element($xw, 'chars', "special characters: <>\"'&");
23xmlwriter_end_element($xw);
24xmlwriter_start_element($xw, 'empty');
25xmlwriter_full_end_element($xw);
26xmlwriter_full_end_element($xw);
27// Force to write and empty the buffer
28$output = xmlwriter_flush($xw, true);
29print $output;
30?>
31--EXPECT--
32<?xml version="1.0" encoding="UTF-8"?>
33<root>
34   <ns1:child1 ns1:att1="&lt;&gt;&quot;'&amp;" xmlns:ns1="urn:ns1">
35      <chars>special characters: &lt;&gt;&quot;'&amp;</chars>
36   </ns1:child1>
37   <empty></empty>
38</root>
39