Changeset 18
- Timestamp:
- 08/27/06 23:31:08 (2 years ago)
- Files:
-
- trunk/XJConf/XmlParser.php (modified) (1 diff)
- trunk/examples/TestPrimitives.php (modified) (2 diffs)
- trunk/examples/TestXInclude.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/XJConf/XmlParser.php
r17 r18 66 66 */ 67 67 private $openFiles = array(); 68 /** 69 * the real xml parser 70 * 71 * @var XMLReader 72 */ 73 private $reader; 68 74 69 /** 75 70 * list of node types, used for compatibility between PHP 5.0 and 5.1 trunk/examples/TestPrimitives.php
r14 r18 4 4 'XmlParser' 5 5 ); 6 error_reporting(E_ALL | E_STRICT); 7 6 8 require 'ColorPrimitives.php'; 7 9 /** … … 16 18 $tagParser = new DefinitionParser(); 17 19 $defs = $tagParser->parse(getcwd() . '/xml/defines-primitives.xml'); 18 19 var_dump($defs);20 20 21 21 $conf = new XmlParser(); trunk/examples/TestXInclude.php
r17 r18 5 5 'ext.xinc.XInclude' 6 6 ); 7 error_reporting(E_ALL | E_STRICT); 8 7 9 require 'ColorPrimitives.php'; 8 10 /**
