]> git.sesse.net Git - xml-template/blob - php/attribute-empty.php
e2f02338a6024bf8d96729a9b097b3bdc85ee3b2
[xml-template] / php / attribute-empty.php
1 <?php
2 require('xml-template.php');
3
4 $doc = XML_Template_process_file('../xml/clone.xml', array(
5         'color' => 'blue',
6         '#things' => ''             # no better way to do it, I'm afraid
7 ));
8 print $doc->dump_mem();
9 ?>