站长百科 | 数字化技能提升教程 数字化时代生存宝典
导航: 上一页
框架采用Smarty模板引擎,在templates中保存模板,$php->tpl相当于是Smarty的实例。Smarty所有的方法,模板标签和过滤器都可以在模板中使用。
view sourceprint?1. <?php require('config.php'); $php->tpl->assign('title','hello world'); $php->tpl->display('index.html'); ?>