示例#1
0
 /**
  * Parse an XML file with the specified handler and return data in an object.
  * @see xml.XMLParser::parse()
  * @param $handler reference to the handler to use with the parser.
  */
 function &parseWithHandler($file, &$handler)
 {
     $parser = new XMLParser();
     $parser->setHandler($handler);
     $data =& $parser->parse($file);
     $parser->destroy();
     return $data;
 }