require('./libs/Smarty.class.php');

$smarty = new Smarty();
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
$smarty->setTemplateDir('templates');
$smarty->setCompileDir('compile');

$smarty->assign("a","123sdads");
$smarty->display('index.html');

 

-------------------------------------index.html-------------------

{$a}

---------------------------------------------------------------------

//引入lib和templates文件

posted on 2018-05-28 10:52  PHP`reader  阅读(80)  评论(0编辑  收藏  举报