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="}>";
 ?>
相關文章
相關標籤/搜索