]> git.sesse.net Git - xml-template/blobdiff - php5-swig/simple.php
Add a proper wrapper for php5-swig, which also makes attribute[23] pass. All tests...
[xml-template] / php5-swig / simple.php
index 2f29d51d52863ead46eb99c73461dc7f973c32dd..33a512d8711645586a618e5c93863b8c5f264f37 100644 (file)
@@ -1,11 +1,11 @@
 <?php
+include("xml-template.php");
 
-dl("XML_Template_SWIG.so");
 $doc = XML_Template_process_file('../xml/simple.xml', array( 
        'title' => 'A very basic example',
        '#hello' => 'Hello world!'
 ), true);
-output_to_fd_and_free($doc, 1);
+output_to_fd($doc, 1);
 
 ?>