/** * 取得模板引擎实例 * * @return obj * @access public * @static */ public static function getInstance() { if (is_null(self::$instance)) { self::$instance = new Start(); } return self::$instance; }