DIRECTORY_SEPARATOR

时间: 2009-07-20  分类: php+Mysql  收藏
onst DIR_SEP = DIRECTORY_SEPARATOR;// 路径分割 win下 linux下/

    /**
     * 构造方法
     *
     * @return void
     */
    private function __construct()
    {
        $this->_options = array(
            'template_dir' => 'templates' . self::DIR_SEP, //模板文件所在目录
            'cache_dir' => 'templates' . self::DIR_SEP . 'cache' . self::DIR_SEP, //缓存文件存放目录
            'auto_update' => false, //当模板文件改动时是否重新生成缓存
            'cache_lifetime' => 0, //缓存生命周期(分钟),为 0 表示永久
            'suffix' => '.html', //模板文件后缀
        );
    }
分享到:

评论

昵 称: