]> git.sesse.net Git - xml-template/blob - php5-swig/attribute3.php
8b84e7da6b520b5948640c1f78af4b7040579ec5
[xml-template] / php5-swig / attribute3.php
1 <?php
2
3 dl("XML_Template_SWIG.so");
4 $doc = process_file('../xml/clone.xml', array(
5         'color' => 'blue',
6         '#things' => XML_Template_alternate('li/class', array(
7                 array( 'li' => 'Raindrops on roses' ),
8                 array( 'li' => 'Whiskers on kittens' ),
9                 NULL,
10                 array( 'li' => 'Bright copper kettles' ),
11                 array( 'li' => 'Warm, woolen mittens' ),
12         ), array('odd', 'even'))
13 ), true);
14 output_to_fd_and_free($doc, 1);
15 ?>