smarty手记2

简介:
section.php
<?php 
require_once  "../smarty/Smarty.class.php"
$smarty= new Smarty(); 
$smarty->template_dir= "../php/tmps"
$smarty->compile_dir= "../php/tmps_c"
$smarty->left_delimiter= "<{"
$smarty->right_delimiter= "}>"
 
$colors=array( "红", "橙", "黄", "绿", "蓝", "靛", "紫"); 
$smarty->assign( "mycolors",$colors); 
$smarty->display( "array.tpl"); 
?>
 
模板文件array.tpl:
 
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > 
< html  xmlns ="http://www.w3.org/1999/xhtml" > 
< head > 
< meta  http-equiv ="Content-Type"  content ="text/html; charset=gbk"  /> 
< title >Smarty--section函数使用 </title> 
</head> 

< body > 
显示数组: < {section name=colorindex loop=$mycolors} > < {$mycolors[colorindex]} > < {/section} > 
</body> 
</html>
 
 
结果:
 
显示数组:红橙黄绿蓝靛紫
 
 




本文转自 xcf007 51CTO博客,原文链接:http://blog.51cto.com/xcf007/111413,如需转载请自行联系原作者


相关文章
|
Web App开发 PHP 索引
smarty、smarty格式化、smarty整数、smarty float、smarty各种转换方式、smarty日期转换等等
smarty code: {config_load file='config.conf'} Smarty学习 {capture name=banner}{*注释掉中间显示内容*} {include file="banner.
1266 0
|
PHP 前端开发 网络架构
|
编解码 JavaScript 前端开发
|
PHP 搜索推荐 数据库
|
PHP 编解码 JavaScript
ecshop中smarty最常用的6大基本语法
模板制作比较核心的其实就是变量的使用,因为这些就是数据的根本,想从数据库里获取数据并显示在界面就必须使用smarty来展示,下面是关于smarty的介绍和使用。Smarty是一个php模板引擎,它分开了逻辑程序和外在的内容,提供了一种易于管理的方法.Smarty要求web服务器运行php4.0.6和以上版本.smarty安装需要smarty库文件。
1445 0
|
PHP Apache 缓存
yaf(5) smarty
2013年4月6日 13:41:37 参考: http://www.oschina.net/question/812776_71817 http://yaf.laruence.com/manual/yaf.
899 0