版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan
一边学习,一边看官方,把大师兄的smarty重写了一遍,能运行.
example1.php
example2.php
example3.php
example4.php
newsmarty.php
e_footer.html
e_header.html
example1.html
<{* Smarty 注释 *}>
<{include file="e_header.html"}>
Hello, <{$name}>!
<{include file="e_footer.html"}>
example2.html
example3.html
<html>
<head><title>模板中内定的一些函数</title></head>
<body>
<{*下面的这一段相当于在模板内部定义一个变量UserName*}>
<{assign var="UserName" value="myz"}>
这里将显示模板内部定义的一个变量:UserName = <{$UserName}>
下面的这一行将显示3个checkBox:<br>
<{html_checkboxes name="CheckBox" options=$CheckName selected=$IsChecked output=$CheckName separator="<br />"}>
下面在这一行将显示3个radio:<br>
<{html_radios name="RadioBox" options=$RadioName checked=$IsChecked output=$RadioName separator="<br />"}>
下面显示一个月,日, 年选择框:<br>
<{html_select_date}>
<hr><b>CopyRight(C) By XiaoJun, Li 2004<b><{mailto address="[email protected]" text="联系作者"}>
</body>
</html>
example4.html
<html>
<head><title>模板中的流程控制</title><head>
<body>
<table border="1" align="center">
<{assign var="tbColor" value="green"}>
色彩:<{$tbColor}><br>
<{section name=loop loop=$News}>
<{if $tbColor == "green"}>
<tr bgcolor="<{$tbColor}>">
<{assign var="tbColor" value="orange"}>
<{else $tbColor == "orange"}>
<tr bgcolor = "<{$tbColor}>">
<{assign var="tbColor" value="green"}>
<{/if}>
<td><{$News[loop].newsID}></td>
<td><{$News[loop].newsTitle}></td>
<tr>
<{/section}>
</table>
</body>
</html>
example4_2.html
<html>
<head><title>模板中的流程控制</title><head>
<body>
<table border="1" align="center">
<{assign var="tbColor" value="gray"}>
色彩:<{$tbColor}><br>
<{section name=loop loop=$News}>
<tr bgcolor="<{cycle values="#D4D0C8,#EEEEEE"}>">
<td><{$News[loop].newsID}></td>
<td><{$News[loop].newsTitle}></td>
<tr>
<{/section}>
</table>
</body>
</html>
example4_3.html
<html>
<head>
<title>一行输出多条记录</title>
</head>
<body>
<table>
<tr>
<{section name=loop loop=$News step=1}>
<{if $smarty.section.loop.index % 4==0}>
</tr>
<tr>
<{/if}>
<td><{$News[loop].newsID}></td>
<td><{$News[loop].newsTitle}></td>
<{/section}>
</tr>
</table>
</body>
</html>
<!--
{section name = name loop = $varName[, start = $start, step = $step, max = $max, show = true]}
name: section的名称,不用加$
$loop: 要循环的变量,在程序中要使用assign对这个变量进行操作。
$start: 开始循环的下标,循环下标默认由0开始
$step: 每次循环时下标的增数
$max: 最大循环下标
$show: boolean类型,决定是否对这个块进行显示,默认为true
这里有个名词需要说明:
循环下标:实际它的英文名称为index,是索引的意思,这里我将它译成"下标",主要是为了好理解。它表示在显示这个循环块时当前的循环索引,默认从0开始,受$start的影响,如果将$start设为5,它也将从5开始计数,在模板设计部分我们使用过它,这是当前{section}的一个属性,调用方式为Smarty.section.sectionName.index,这里的sectionName指的是函数原型中的name属性。
{section}块具有的属性值,分别为:
1. index: 上边我们介绍的"循环下标",默认为0
2. index_prev: 当前下标的前一个值,默认为-1
3. index_next: 当前下标的下一个值,默认为1
4. first: 是否为第一下循环
5. last: 是否为最后一个循环
6. iteration: 循环次数
7. rownum: 当前的行号,iteration的另一个别名
8. loop: 最后一个循环号,可用在section块后统计section的循环次数
9. total: 循环次数,可用在section块后统计循环次数
10. show: 在函数的声明中有它,用于判断section是否显示
它们的具体属性大家可以参考手册,在程序中可灵活使用它的这些属性,模板部分我就使用过index属性,大家可以回过头去看看。
同样,{section}也可以配合使用{sectionelse},用来表示传入的数组变量为空时对模板进行的处理。
-->
example4_4.html
----------------------------另外一个工程-----------------------------------------
index.php
<?php
/*
* @参考 大师兄smarty教程
* @author 马永占
*/
// 加载 Smarty library
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');
require('newsmarty.php');
define("NUM", 5); //定义每次显示的新闻条数
$conn=new mysqli("localhost", "root", "myz","News");
if (mysqli_connect_errno()!=0)
{
$errno=mysqli_connect_errno();
$error=mysqli_connect_error();
echo $errno.'<br />'.$error.'<br />';
exit;
}
mysqli_query($conn,"SET NAMES 'gbk'");
//这里将处理国内新闻部分
$query = "SELECT iNewsID, vcNewsTitle FROM tb_news_ch ORDER BY iNewsID DESC";
$result = mysqli_query($conn,$query);
if ($result===false)
{
$errno=mysqli_connect_errno();
$error=mysqli_connect_error();
echo $errno.'<br />'.$error.'<br />';
exit;
}
$i = NUM;
if (mysqli_num_rows($result)==0)
{
echo 'no data<br />';
exit;
}
else
{
while(($row = mysqli_fetch_assoc($result)) && $i > 0)
{
$array[] = array("NewsID"=>substr($row["iNewsID"], 0, 40),
"NewsTitle"=>substr($row["vcNewsTitle"], 0, 40));
$i--;
}
$smarty->assign("News_CH", $array);
unset($array);
mysqli_free_result($result);
}
//这里处理国际新闻部分
$query = "SELECT iNewsID, vcNewsTitle FROM tb_news_in ORDER BY iNewsID DESC";
$result = mysqli_query($conn,$query);
if ($result===false)
{
$errno=mysqli_connect_errno();
$error=mysqli_connect_error();
echo $errno.'<br />'.$error.'<br />';
exit;
}
$i = NUM;
if (mysqli_num_rows($result)==0)
{
echo 'no data<br />';
}
else
{
while(($row = mysqli_fetch_assoc($result)) && $i > 0)
{
$array[] = array("NewsID"=>substr($row["iNewsID"], 0, 40),
"NewsTitle"=>substr($row["vcNewsTitle"], 0, 40));
$i--;
}
$smarty->assign("News_IN", $array);
unset($array);
mysqli_free_result($result);
}
//这里将处理娱乐新闻部分
$query = "SELECT iNewsID, vcNewsTitle FROM tb_news_mu ORDER BY iNewsID DESC";
$result = mysqli_query($conn,$query);
if ($result===false)
{
$errno=mysqli_connect_errno();
$error=mysqli_connect_error();
echo $errno.'<br />'.$error.'<br />';
}
$i = NUM;
if (mysqli_num_rows($result)==0)
{
echo 'no data<br />';
}
else
{
while(($row = mysqli_fetch_assoc($result)) && $i > 0)
{
$array[] = array("NewsID"=>substr($row["iNewsID"], 0, 40),
"NewsTitle"=>substr($row["vcNewsTitle"], 0, 40));
$i--;
}
$smarty->assign("News_MU", $array);
unset($array);
mysqli_free_result($result);
}
mysqli_close($conn);
//编译并显示位于/templates下的index.html模板
$smarty->display("index.html");
?>
news.php
<?php
/*
* @参考 大师兄smarty教程
* @author 马永占
*/
// 加载 Smarty library
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');
require('newsmarty.php');
$conn=new mysqli("localhost", "root", "myz","News");
$NewsID = $_GET["id"]; //获取新闻编号
$NewsType = $_GET["type"]; //要显示的新闻类型
switch($NewsType)
{
case 1:
$dbName = "tb_news_ch";
break;
case 2:
$dbName = "tb_news_in";
break;
case 3:
$dbName = "tb_news_mu";
break;
}
$query = "SELECT vcNewsTitle, ltNewsContent FROM $dbName";
$result = mysqli_query($conn,$query);
if($row = mysqli_fetch_assoc($result))
{
$smarty->assign("NewsTitle", $row["vcNewsTitle"]);
$smarty->assign("NewsContent", $row["ltNewsContent"]);
mysqli_free_result($result);
$smarty->display("news.html");
}
mysqli_close($conn);
?>
newsmarty.php
<?php
/*
* @author 马永占
*/
require(SMARTY_DIR.'Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = SMARTY_DIR_OTHER.'templates';//设置模板目录
$smarty->config_dir = SMARTY_DIR_OTHER.'config';//设置配置目录
$smarty->compile_dir = SMARTY_DIR_OTHER.'templates_c';//设置编译目录
$smarty->cache_dir = SMARTY_DIR_OTHER.'cache';//设置缓存目录
$smarty->cache_lifetime = 60 * 60 * 24; //设置缓存时间,60秒*60*24
$smarty->caching = false; //设置缓存方式,这个属性告诉Smarty是否要进行缓存以及缓存的方式。
//它可以取3个值,0:Smarty默认值,表示不对模板进行缓存;1:表示Smarty将使用当前定义的cache_lifetime来决定是否结束cache;2:表示Smarty将使用在cache被建立时使用cache_lifetime这个值。
//习惯上使用true与false来表示是否进行缓存。
//----------------------------------------------------
//左右边界符,默认为{},但实际应用当中容易与JavaScript
//相冲突,所以建议设成<{}>或其它。
//----------------------------------------------------
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
?>
news.sql
评论