php-创建TPL自定义模板(template.inc.php)

    //设置utf-8编码
    header('Content-Type:text/html;charset=utf-8');
    //网站根目录
    define('ROOT_PATH',dirname(__FILE__));
    //模板文件目录
    define('TPL_DIR',ROOT_PATH.'/templates/');
    //编译文件目录
    define('TPL_C_DIR',ROOT_PATH.'/templates_c/');
    //缓存文件目录
    define('CACHE',ROOT_PATH.'/cache/');

    //是否开启缓冲区
    define('IS_CACHE',true);
    //判断是否开启缓冲区
    IS_CACHE ? ob_start(): null;    //如果IS_CACHE为真,则执行ob_start(),否则null

    //引入模板类
    require ROOT_PATH.'/includes/Templates.class.php';
    //实例化模板类
    $_tpl = new Templates();

你可能感兴趣的:(php-创建TPL自定义模板(template.inc.php))