笑谈配置,使用Smarty技术
2015-01-24信息快讯网
下面是一步步的来的,请注意:
1: 在官方下载模板库文件: http://smarty.php.net/download.php
下载了就解压,看见一个文件夹了,是个 smarty.x.x,打开,里面有个libs 文件夹,ok,注意这个东西就是我们要的.
2: 在你的网站目录下面,比方我的php网站IIS在物理硬盘的 d:/web/web/php下面,在这个文件夹下面建立:一个文件夹 test,然后我们把刚提到的 libs文件夹复制道test 文件夹下面.{ * 请看本文最后的注释 TIPS1}
3:在test 文件夹下面再建立4个文件夹;
cache
configs
templates
templates_c
4:建立文件 text.htm:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title><{$title}></title> </head> <body> <{$content}> </body> </html>
保存在 templates 目录下面.
5:然后建立文件模板配置文件: config.php
<?php include "../libs/Smarty.class.php"; $NowPathArray=explode("test",str_replace("\\","/",dirname(__FILE__))) ; @define("root_path", $NowPathArray[0]); @define('__SITE_ROOT', root_path."test"); $tpl = new Smarty(); $tpl->template_dir = __SITE_ROOT . "/templates/"; $tpl->compile_dir = __SITE_ROOT . "/templates_c/"; $tpl->config_dir = __SITE_ROOT . "/configs/"; $tpl->cache_dir = __SITE_ROOT . "/cache/"; $tpl->left_delimiter = '<{'; $tpl->right_delimiter = '}>'; ?>
保存在主目录也就是 test下面.
6 :在test新建文件test.php文件,输入:
<?php require "config.php"; $tpl->assign("title", "测试成功了,这是标题"); $tpl->assign("content", "这是内容"); $tpl->display('test.htm'); ?>
7:在浏览器测试test.php显示为:
这是内容
恭喜,配置成功.否则,失败,再检查是不是按照我说的来的.
Tips1 :为了能在网站全局使用Smarty技术,我们可以修改PHP.inc里面的
<B>
; Windows: "path1;path2"
include_path = ".;c:phpincludes"
</B>
改为:
------------------->
; Windows: "path1;path2"
include_path = ".;c:phpincludes;d:webwebphplibs"
使用模板的时候,像前面一样的方式使用,不要
include "../libs/Smarty.class.php";
直接使用就行了的.
PHP 程序员也要学会使用“异常”
php ignore_user_abort与register_shutdown_function 使用方法
PHP 定界符 使用技巧
php array_map array_multisort 高效处理多维数组排序
PHP加速 eAccelerator配置和使用指南
PHP 服务器配置(使用Apache及IIS两种方法)
mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
将数组写入txt文件 var_export
PHP Pear 安装及使用
php 什么是PEAR?(第三篇)
php smarty的预保留变量总结
方便实用的PHP生成静态页面类(非smarty)第1/2页
smarty的保留变量问题
smarty section简介与用法分析
PHP Smarty生成EXCEL文档的代码
SMARTY学习手记
Smarty模板快速入门
菜鸟学PHP之Smarty入门
Smarty结合Ajax实现无刷新留言本实例
实例(Smarty+FCKeditor新闻系统)
smarty+adodb+部分自定义类的php开发模式
PHP获得用户使用的代理服务器ip即真实ip
使用adodb lite解决问题
PHP通过COM使用ADODB的简单例子
ob_start(),ob_start('ob_gzhandler')使用
使用 MySQL 开始 PHP 会话