首頁  >  文章  >  後端開發  >  小弟我这个smarty配置如何了

小弟我这个smarty配置如何了

WBOY
WBOY原創
2016-06-13 13:43:51872瀏覽

我这个smarty配置怎么了
目录结构如下: smarty_pro1
  ---libs
  ---config
  ---templates (这里放了个,index.tpl)
  ---templates_c
  ---cache
  index.php

index.php 里的内容为
define('SMARTY_PATH','../smarty_pro1/');
include_once(SMARTY_PATH.'libs/Smarty.class.php');

$smarty=new Smarty();

$smarty->template_dir= SMARTY_PATH.'templates/';
$smarty->compile_dir= SMARTY_PATH.'templates_c/';
$smarty->config_dir= SMARTY_PATH.'configs/';
$smarty->cache_dir= SMARTY_PATH.'cache/';

$smarty->left_delimiter='{';
$smarty->right_delimiter='}';
$smarty->assign('title','测试一下');
$smarty->assign('content','内容');
$smarty->display('index.tpl');


?>

index.tpl内容为





{ $title }



{ $content }



涓轰
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn