smarty模版配置

 <?php
    define(root,"C:/www/life/";
    include root."libs/smarty.class.php";
    
    $tpl=new smarty;
    $tpl->template_dir=root."tpl/"; //模版文件
     $tpl->compile_dir=root."com/";  //生成编译后的文件
     $tpl->config_dir=root."configs";//配置文件
     $tpl->caching=0;   //在开发阶段不要开启,运行阶段再开启
     $tpl->cache_dir=root."cache";
     $tpl->cache_lifetime=60*60*24*7;
     $tpl->left_delimiter="<{";
     $tpl->right_delimiter="}>";
 ?>

你可能感兴趣的:(smarty配置)