芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/XML/Feed/Parser2.php
* @copyright 2005 James Stewart
* @license http://www.gnu.org/copyleft/lesser.html GNU LGPL * @version CVS: $Id$ * @link http://pear.php.net/package/XML_Feed_Parser/ */ /** * XML_Feed_Parser_Type is an abstract class required by all of our * feed types. It makes sense to load it here to keep the other files * clean. */ require_once 'XML/Feed/Parser/Type.php'; /** * We will throw exceptions when errors occur. */ require_once 'XML/Feed/Parser/Exception.php'; /** * This is the core of the XML_Feed_Parser package. It identifies feed types * and abstracts access to them. It is an iterator, allowing for easy access * to the entire feed. * * @author James Stewart
* @version Release: @package_version@ * @package XML_Feed_Parser */ class XML_Feed_Parser2 extends XML_Feed_Parser { /** * A variant of XML_Feed_Parser which does no work in the constructor. * * @see initialize() */ function __construct() { $this->model = new DOMDocument; } }