大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇内容介绍了“如何实现smarty简单模板变量输出”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
成都网站设计、做网站、成都外贸网站建设公司,成都做网站公司-创新互联公司已向数千家企业提供了,网站设计,网站制作,网络营销等服务!设计与技术结合,多年网站推广经验,合理的价格为您打造企业品质网站。具体如下:
config.inc.php配置文件如下:
include_once('smarty/Smarty.class.php'); $smarty=new Smarty(); $smarty->config_dir="smarty/Config_File.class.php"; $smarty->caching=false; //是否开启缓存 $smarty->template_dir="./templates"; //模板目录 $smarty->compile_dir="./templates_c"; //编译目录 $smarty->cache_dir="./smarty_cache"; //缓存目录 $smarty->left_delimiter="<{"; $smarty->right_delimiter="}>";
index.php文件如下:
include('./config.inc.php'); $title="php测试标题"; $content="smarty练习!"; $newstext[]=array("name"=>"php程序测试","date"=>"2015-08-01"); $newstext[]=array("name"=>"php视频教程","date"=>"2015-08-02"); $newstext[]=array("name"=>"smarty学习","date"=>"2015-08-03"); $row=array("标题","姓名","年龄"); $smarty->assign("title",$title); $smarty->assign("row",$row);//一个数组传递多个值 $smarty->assign("shownewstext",$newstext);//二维数组传递多个值 $smarty->assign("content",$content); $smarty->display('index.htm');
运行结果如下:
测试数组:标题 | 姓名 | 年龄 -------------------------------------------------------------------------------- 测试内容为:smarty练习! 循环新闻内容为: php程序测试 - 2015-08-01 php视频教程 - 2015-08-02 smarty学习 - 2015-08-03
“如何实现smarty简单模板变量输出”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!