php smarty 目录引擎实例入门教程
require(你的目录 . 'smarty/libs/Smarty.class.php');
/*
* 模版引擎
*/
$tpl = new Smarty();
$tpl->template_dir = 模板目录;
$tpl->compile_dir =解析目录 . 'tmp/template_c/';
$tpl->debugging = false;
$tpl->caching = 0;
$tpl->cache_lifetime = 6000;
$tpl->left_delimiter = '';
首页smarty的配置完成下面来看个实例
$tpl->assign('cityid', "长沙");
我们的index.tpl模板文件
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="936"%>
显示结果为
长沙
好了简单吧,关于foreach item setion下次再次。
本站原创转载注明www.111com.net