`
txf2004
  • 浏览: 7033982 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

smarty教程,程序实现,1-4

阅读更多

版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan

一边学习,一边看官方,把大师兄的smarty重写了一遍,能运行.

example1.php

<?php
/*
*@参考大师兄smarty教程
*@author马永占
*/

//加载Smartylibrary
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');

require('newsmarty.php');

$smarty->assign('name','聪明!');//进行模板变量替换

//编译并显示位于templates下的index.tpl模板

$smarty->display('example1.html');
?>

example2.php

<?php
/*
*@参考大师兄smarty教程
*@author马永占
*/

//加载Smartylibrary
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');

require('newsmarty.php');

//时间的不好用...郁闷
$smarty->assign("str1","mynameis:myz.");//将str1替换成MyNameIs:Myz.
$smarty->assign("str2","我的名字叫:");//输出:我的名字叫:MyZ
$smarty->assign("str3",strtotime('-1day'));//输出2007年06月19日(我的当前时间减一)
//$smarty->assign("str4","");//第四句不处理时会显示默认值,如果使用前面这一句则替换为""

$smarty->assign("str5","前边8个*");//第五句输出:********前边8个*
$smarty->assign("str6","MaYongZhan");//这里将输出mayongzhan
$smarty->assign("str7","thisismyz");//在模板中显示为:thisismyz
$smarty->assign("str8",time());

//编译并显示位于/templates下的index.tpl模板
$smarty->display("example2.html");
?>

example3.php

<?php
/*
*@参考大师兄smarty教程
*@author马永占
*/

//加载Smartylibrary
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');

require('newsmarty.php');

//--------------------------------------------------------------------------------------
//处理{html_checkboxesname="CheckBox"values=$CheckNamechecked=$IsCheckedoutput=$valueseparator="<br/>"}
//--------------------------------------------------------------------------------------

$smarty->assign('CheckName',array(
1001=>'语文',
1002=>'数学',
1003=>'外语'));
$smarty->assign('IsChecked',1001);


//--------------------------------------------------------------------------------------
//处理{html_radiosname="RadioBox"values=$RadioNamechecked=$IsCheckedoutput=$valueseparator="<br/>"}
//--------------------------------------------------------------------------------------

$smarty->assign('RadioName',array(
1001=>'语文1',
1002=>'数学1',
1003=>'外语1'));
$smarty->assign('IsChecked',1001);

//--------------------------------------------------------------------------------------
//{html_select_date}不用处理会自动输出
//--------------------------------------------------------------------------------------


//编译并显示位于/templates下的index.tpl模板

$smarty->display("example3.html");
?>

example4.php

<?php
/*
*@参考大师兄smarty教程
*@author马永占

*/

//加载Smartylibrary
define('SMARTY_DIR','smarty/libs/');
define('SMARTY_DIR_OTHER','smarty/');

require('newsmarty.php');

$array[]=array("newsID"=>"001","newsTitle"=>"第1条新闻");
$array[]=array("newsID"=>"002","newsTitle"=>"第2条新闻");
$array[]=array("newsID"=>"003","newsTitle"=>"第3条新闻");
$array[]=array("newsID"=>"004","newsTitle"=>"第4条新闻");
$array[]=array("newsID"=>"005","newsTitle"=>"第5条新闻");
$array[]=array("newsID"=>"006","newsTitle"=>"第6条新闻");
$array[]=array("newsID"=>"007","newsTitle"=>"第7条新闻");
$array[]=array("newsID"=>"008","newsTitle"=>"第8条新闻");


$smarty->assign("News",$array);

$smarty->display("example4.html");
//$smarty->display("example4_2.html");
//$smarty->display("example4_3.html");
//$smarty->display("example4_4.html");

?>

newsmarty.php

<?php
/*
*@author马永占
*/

require(SMARTY_DIR.'Smarty.class.php');

$smarty=newSmarty;

$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="}>";
?>

e_footer.html

<center>底部</center>
</body>
</html>

e_header.html

<html>
<head>
<title>标题</title>
</head>
<body>

example1.html

<{* Smarty 注释 *}>
<{include file="e_header.html"}>
Hello, <{$name}>!
<{include file="e_footer.html"}>

example2.html

<html>
<head><title>smarty示例2</title></head>
<body>
1. 第一句首字母要大写:<{$str1|capitalize}><br>
2. 第二句模板变量 + MyZ:<{$str2|cat:"MyZ"}><br>
3. 第三句输出当前日期:<{$str3|date_format:"%Y年%m月%d日"}><br>
4. 第四句.php程序中不处理,它显示默认值:<{$str4|default:"没有值!"}><br>
5. 第五句要让它缩进8个空白字母位,并使用"*"取替这8个空白字符:<{$str5|indent:8:"*"}><br>
6. 第六句把TEACHerLI@163.com全部变为小写:<{$str6|lower}><br>
7. 第七句把变量中的myz替换成:myz1:<{$str7|replace:"myz":"myz1"}><br>
8. 第八句为组合使用变量修改器:<{$str8|date_format:"%Y年%m月%d日"|lower}>
</body>
</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="teacherli@163.ccom" 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

<html>
<head><title>这是一个foreach使用的例子</title></head>
<body>
这里将输出一个数组:<br>
<{foreach from=$News item=newsID}>
新闻编号:<{$newsID.newsID}><br>
新闻内容:<{$newsID.newsTitle}><br><hr>
<{foreachelse}>
对不起,数据库中没有新闻输出!
<{/foreach}>
</body>
</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

--phpMyAdminSQLDump
--
version2.10.1
--
http://www.phpmyadmin.net
--

--
主机:localhost
--
生成日期:2007年06月21日10:53
--
服务器版本:5.0.27
--
PHP版本:5.2.1

SETSQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
--
数据库:`news`
--


----------------------------------------------------------

--
--
表的结构`tb_news_ch`
--


分享到:
评论

相关推荐

    smarty简易教程

    &lt;title&gt;Smarty教程 ``` 3. **footer.tpl** ```html &lt;center&gt;Copyright © 2004-2008 by Teacher Li. Email: teacherli@163.com&lt;/center&gt; ``` 4. **index.php** ```php include_once("./...

    smarty实例详细教程(经典)

    1. **高效性**: 使用 Smarty 开发的应用程序具有较高的执行效率,相较于其他模板引擎,其处理速度更快。 2. **编译机制**: Smarty 会将模板编译成 PHP 文件,这样在下次请求时可以直接加载已编译的文件,避免重复...

    Smarty-2.6.18.tar.rar

    Smarty是一个广泛使用的PHP模板引擎,它的出现旨在将呈现层(视图)与应用程序逻辑分离,以实现更清晰的代码组织和更好的开发效率。在“Smarty-2.6.18.tar.rar”压缩包中,包含了Smarty 2.6.18版本的源代码和相关的...

    Smarty教程 中文版

    Smarty是一个流行的PHP模板引擎,它的主要目标是将呈现逻辑与应用程序的业务逻辑分离,从而实现更清晰的代码组织和更好的开发效率。Smarty的设计理念是使设计师和程序员能够各自专注于他们的专业领域,设计师处理...

    smarty下载及入门教程

    Smarty是一款广泛应用于PHP开发中的模板引擎,它的主要目标是实现应用程序逻辑与页面展示的分离,以便程序员专注于数据处理,而设计师则专注于页面的布局和视觉效果。这种分离使得团队合作更为高效,各司其职,提高...

    大师兄Smarty教程

    本教程“大师兄Smarty教程”(fuyongjie之2007.11升级版)可能是由名为“fuyongjie”的作者或团队编写的,提供了关于Smarty的详细教学资料,适用于初学者和有经验的开发者。 Smarty的核心概念: 1. **模板和PHP...

    smarty 教程大集合

    本教程大集合包含两个重要的资源:《smarty大师兄教程.chm》和《smarty.chm》的开发帮助文档,都是关于Smarty学习的宝贵资料。 《smarty大师兄教程.chm》可能是由一位经验丰富的开发者编写的,通常这类教程会深入浅...

    smarty教程与参考文档(chm)

    Smarty是一个流行的PHP模板引擎,它的主要目标是将呈现逻辑与应用程序的业务逻辑分离,从而实现更清晰的代码组织和更好的开发效率。这个压缩包包含了两份重要的资源:一个名为"Smarty.chm"的Smarty参考文档和一个名...

    smarty下载及入门教程.pdf

    Smarty是一个流行的PHP模板引擎,它的主要目标是将应用程序的业务逻辑和页面呈现分离,使得开发者可以专注于数据处理和功能实现,而设计师则可以专注于页面布局和美化。这提高了团队协作效率,尤其适合拥有专门...

    大师兄,大师兄smarty教程

    在“大师兄Smarty教程”的CHM文件中,可能会包含一系列的示例,从简单的变量输出到复杂的模板继承和自定义插件的实现,帮助读者逐步掌握Smarty的使用。 通过这个教程,你将能够熟练地运用Smarty进行PHP项目的模板...

    smarty-2.6.28.tar.gz

    4. **安全功能**:Smarty提供了多种安全过滤机制,如防止XSS攻击(通过默认的安全函数和自动转义输出)和防止SQL注入(通过预定义的变量类型和插件)。 5. **模板继承**:通过使用`extends`关键字,可以创建一个...

    Laravel开发-laravel-smarty .zip

    在这个"Laravel开发-laravel-smarty .zip"压缩包中,我们很可能会找到关于如何在Laravel项目中集成和使用Smarty的相关教程、示例代码或配置文件。 首先,让我们深入了解一下Laravel。Laravel由Taylor Otwell创建,...

    Smarty教程

    Smarty是一个流行的PHP模板引擎,它的主要...通过学习这个Smarty教程,你将掌握如何有效地使用Smarty来分离PHP的业务逻辑和视图层,提高代码的可读性和可维护性。不断实践和探索,你将成为一个Smarty模板引擎的专家。

Global site tag (gtag.js) - Google Analytics