- 您的当前位置: 网站首页 » 信息讲堂 » 技术文章 » php超强模板引擎smarty简单配置
- ***
php超强模板引擎smarty简单配置
1.从从smarty官网下载smarty,然后解压到根目录。
2.将全部解压的文件其中一个libs目录拷贝到根目录下面。里面是smarty用到的类。
3.新建三个文件夹
cache —— 缓存文件夹
templates —— 模板文件夹
templates_c —— 模板编译文件夹
4.在网站根目录下面创建配置文件,建立smary_config.php,在其中输入如下代码:
include_once ("libs/Smarty.class.php"); //包含smarty文件
$smarty = new Smarty(); //建立实例对象
$smarty->config_dir="libs/Config_File.class.php"; //目录变量
$smarty->caching = false; //是否使用缓存
$smarty->template_dir="./templates"; //设置模板目录
$smarty->compile_dir="./templates_c"; //设置模板编译目录
$smarty->cache_dir="./smarty_cache";//缓存文件夹
$smarty->left_delimiter="<{"; $smarty->right_delimiter="}>";
5.templates 目录下建立index.html文件,内容如下:
<html >
<head>
<title>({$title}) </title>
<meta http-equiv=”Content-type” content=”text/html; charset=utf-8″>
<META NAME=”Author” CONTENT=”">
<META NAME=”Keywords” CONTENT=”">
<META NAME=”Description” CONTENT=”">
</head>
<body>
({$title})<p />
({$content})
</body>
</html>
6.在根目录下建立index.php文件,内容如下:
<?php
assign("title", "测试成功了,这是标题");
$smarty ->assign("content", "这是内容");
$smarty->display(index.html);
?>
7.如果没有什么意外发生,浏览器中打开index.php 基本配置已经成功。
2.将全部解压的文件其中一个libs目录拷贝到根目录下面。里面是smarty用到的类。
3.新建三个文件夹
cache —— 缓存文件夹
templates —— 模板文件夹
templates_c —— 模板编译文件夹
4.在网站根目录下面创建配置文件,建立smary_config.php,在其中输入如下代码:
include_once ("libs/Smarty.class.php"); //包含smarty文件
$smarty = new Smarty(); //建立实例对象
$smarty->config_dir="libs/Config_File.class.php"; //目录变量
$smarty->caching = false; //是否使用缓存
$smarty->template_dir="./templates"; //设置模板目录
$smarty->compile_dir="./templates_c"; //设置模板编译目录
$smarty->cache_dir="./smarty_cache";//缓存文件夹
$smarty->left_delimiter="<{"; $smarty->right_delimiter="}>";
5.templates 目录下建立index.html文件,内容如下:
<html >
<head>
<title>({$title}) </title>
<meta http-equiv=”Content-type” content=”text/html; charset=utf-8″>
<META NAME=”Author” CONTENT=”">
<META NAME=”Keywords” CONTENT=”">
<META NAME=”Description” CONTENT=”">
</head>
<body>
({$title})<p />
({$content})
</body>
</html>
6.在根目录下建立index.php文件,内容如下:
<?php
assign("title", "测试成功了,这是标题");
$smarty ->assign("content", "这是内容");
$smarty->display(index.html);
?>
7.如果没有什么意外发生,浏览器中打开index.php 基本配置已经成功。