]> git.sesse.net Git - xml-template/blob - php5-swig/attribute-empty.php
ba4941ec384e0101fa3af5b623749813fc2aa3e4
[xml-template] / php5-swig / attribute-empty.php
1 <?php
2 include("xml-template.php");
3
4 # NULL values are ignored, but having one helps pointing out that
5 # the array given is non-associative
6
7 $doc = XML_Template_process_file('../xml/clone.xml', array(
8         'color' => 'blue',
9         '#things' => array(NULL)
10 ), true);
11 output_to_fd($doc, 1);
12 ?>