Swoole模板系统

来自站长百科
跳转至: 导航、​ 搜索

导航: 上一页


框架采用Smarty模板引擎,在templates中保存模板,$php->tpl相当于是Smarty的实例。Smarty所有的方法,模板标签和过滤器都可以在模板中使用。

view sourceprint?1.
<?php 
require('config.php'); 
$php->tpl->assign('title','hello world'); 
$php->tpl->display('index.html'); 
?>