// +---------------------------------------------------------------------- // $Id$ namespace Think; // 内容解析类 class Parser { public function __construct($content,$type){ $class = '\Think\Parser\Driver\\'.ucwords($type); $parse = new $class(); return $parse->parse($content); } // 解析内容 static public function parse($content,$type){ return new static($content,$type); } }