一 简介
Smarty是一个PHP编写的模板引擎(template engine),主要用于构建web应用程序的表示层。Smarty的主页是http://smarty.php.net, 目前的新版本是2.6.18。Smarty主页上有详细的开发文档,包括在线阅读版本和可供下载的pdf版本,以及一个guestbook的样例程序,为我们开发人员学习smarty提供了极大的方便。
使用smart编写的模板将被smarty编译成php代码,由于编译过程只在模板文件被修改后发生一次,所以使用smarty模板引擎编写的php代码运行速度几乎没有什么损失。
我曾使用smarty库做Web应用开发,最近发现,smarty库也可以用于构建Wap应用。原理上与Web开发是一样的。本文将利用php+smarty创建一个简单的wap页面,以介绍用php+smarty构建Wap应用的一般方法。
二 下载安装
1.php
php的安装过程可以参考:http://www.php.net/manual/en/install.php,本文不再详细叙述。
2.smarty
首先,下载最新版本的smarty:http://smarty.php.net/do_download.php?download_file=Smarty-2.6.18.tar.gz
下载后,找到压缩包内的libs目录,将该目录解缩到apache的document root下。
libs目录下对于开发最重要的文件是Smarty.class.php,其中定义了Smarty类。我们将通过继承这个类来配置自己的模板引擎。
三 配置smarty
<?php
require_once("libs/Smarty.class.php");
class MySmarty extends Smarty
{
function MySmarty()
{
$this->Smarty();
$this->template_dir = 'template';
$this->compile_dir = 'compile';
}
}
$smarty = new MySmarty();
?>
|
www|-----libs|-----template|-----compile|-----mySmarty.class.php
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card title="WAP with smarty">
<p>
{$welcome_message}
</p>
<p>
<table columns="1">
{foreach from=$message_list item=message}
<tr><td>{$message}</td></tr>
{/foreach}
</table>
</p>
</card>
</wml>
|
<?php
require_once("mySmarty.class.php");
header("Content-type: text/vnd.wap.wml");
$smarty->assign("welcome_message", "Welcome smarty!");
$list[0] = "Message 1";
$list[1] = "Message 2";
$list[2] = "Message 3";
$smarty->assign("message_list", $list);
$smarty->display("index.tpl");
?>
|