简单smarty教程
版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://xyhack.blog.51cto.com/265493/74802 |
index.php
<?php
require("smarty/Smarty.class.php"); $tpl = new Smarty(); $tpl->template_dir = "./templates"; //模板目录 $tpl->compile = "./templates_c"; //编译目录 $tpl->left_delimiter = "<{"; // 左右边界符 $tpl->right_delimiter = "}>"; $tpl->assign('contents',array('555-222-9786','636826@163.com',array('555-444-333','666-123-777'))); $tpl->display('index.tpl'); ?> index.tpl
<{$contents[0]}><br />
<{$contents[1]}><br /> <{$contents[2][0]}><br /> <{$contents[2][1]}><br /> output
本文出自 “xyhack” 博客,请务必保留此出处http://xyhack.blog.51cto.com/265493/74802 本文出自 51CTO.COM技术博客 |


636826
博客统计信息
热门文章
最新评论
友情链接