在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//调用 Smarty
然后,调用函数:$template_name = 'test'; //模版文件夹名 require_once( ROOT_PATH . 'includes/smarty/Smarty.class.php'); //包含smarty类文件 $smarty=new Smarty; //初始化Smarty $smarty->compile_check = true; //打开模版编译检查 $smarty->debugging = false; //关闭调试 $smarty->caching = false; //关闭缓存 $smarty->template_dir = "template/{$template_name}/"; //设置模版路径 $smarty->compile_dir = 'template_c'; //设置编译文件存放的文件夹 $smarty->left_delimiter = '[##'; //设置左边界符 $smarty->right_delimiter = '##]'; //设置右边界符号
require_once( ROOT_PATH . 'mods/mod_main.php');
main_page函数如下:$func = 'main_page'; $main_body = $func(); //调用函数,实现不同功能,并用$main_body接收返回结果(其实就是一堆HTML)
function main_page() //默认调用的函数
利用 Smarty 的 display 方法将网页秀出:{ global $smarty; require_once( ROOT_PATH . 'includes/ubb.inc.php'); //包含UBB文件 $message_array = array(); for($i=0;$i<10;$i++) //循环取出结果 { //把结果存成二维数组 $message_array[] = array( 'id' => $i, 'username' => '测试username', 'content' => ubb('测试content'), //用ubb函数过滤变量 ); } $smarty->assign('message' , $message_array); //替换模板变量 return $smarty->fetch('message.tpl'); }
$smarty->assign('main_body' , $func()); //smarty方法,用来把模板里的[##$main_body##]部分用变量$main_body替换。
$smarty->display('test.tpl'); //输出模板 源代码:Smarty简单示例 Smarty中文文档:Smarty中文文档 |
2022-08-19
2022-07-30
2022-08-17
2022-11-06
2022-08-17
请发表评论