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