|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
基础这个东西,有人问学php需要任何基础不? Smarty手艺是PHP的精华地点,跟着PHP版本的逐步进步,本来的良多办法或许太甚时了,上面我就针对最新的PHP5.1.1版本的利用,设置装备摆设说说若何设置装备摆设.
上面是一步步的来的,请注重:
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:
[复制此代码]CODE:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><{$title}></title>
</head>
<body>
<{$content}>
</body>
</html>
保留在 templates 目次上面.
5:然后创立文件模板设置装备摆设文件: config.php
[复制此代码]CODE:<?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文件,输出:
[复制此代码]CODE:<?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";
直接利用就好了的.
要想从事软件开发工作,那么,还有很多的知识要学习,其实,不管是以后想去从事哪个工作,都需要自己去利用空闲的时间去不断的学习新的知识,不断的充实自己。 |
|