Smarty安装配置方法
作者:bea
下载最新的Smarty:http://smarty.php.net/ 当前最新版本:2.6.18 解压后将目录中的libs目录重命名为smarty,复制到你的网站目录,同时在网站根目录下建立templates和templates_c两个目录 建立test.php,内容如下: <?php include_once('./Smarty/Smarty.class.php');$smarty=newSmarty(); $smarty->template_dir="./te
下载最新的Smarty:http://smarty.php.net/
当前最新版本:2.6.18
解压后将目录中的libs目录重命名为smarty,复制到你的网站目录,同时在网站根目录下建立templates和templates_c两个目录
建立test.php,内容如下:
<?php
include_once('./Smarty/Smarty.class.php');$smarty = new Smarty();
$smarty -> template_dir = "./templates"; //模板存放目录
$smarty -> compile_dir = "./templates_c"; //编译目录
$smarty -> left_delimiter = "{{"; //左定界符
$smarty -> right_delimiter = "}}"; //右定界符
$smarty -> assign('test','OK');
$smarty -> display('test.html');
?>
给templates_c权限755
在templates目录下新建test.html:
<html>
<head>
</head>
<body>
{{$test}}
</body>
</html>
打开test.php,如果看到OK就说明你的smarty安装成功了!
有用 | 无用
当前最新版本:2.6.18
解压后将目录中的libs目录重命名为smarty,复制到你的网站目录,同时在网站根目录下建立templates和templates_c两个目录
建立test.php,内容如下:
<?php
include_once('./Smarty/Smarty.class.php');$smarty = new Smarty();
$smarty -> template_dir = "./templates"; //模板存放目录
$smarty -> compile_dir = "./templates_c"; //编译目录
$smarty -> left_delimiter = "{{"; //左定界符
$smarty -> right_delimiter = "}}"; //右定界符
$smarty -> assign('test','OK');
$smarty -> display('test.html');
?>
给templates_c权限755
在templates目录下新建test.html:
<html>
<head>
</head>
<body>
{{$test}}
</body>
</html>
打开test.php,如果看到OK就说明你的smarty安装成功了!
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php格式化工具Beautify PHP小小BUG
- 使用PHP的日期与时间函数技巧
- 追求程序速度,而不是编程的速度
- 懒惰是金 介绍几个php通用的函数
- 编写漂亮的代码 - 将后台程序与前端程序分开
- php REMOTE_ADDR之获取访客IP的代码
- Gregarius中文日期格式问题解决办法
- PHP下用rmdir实现删除目录的三种方法小结
- Mysql中limit的用法方法详解与注意事项
- php采集速度探究总结(原创)
- 学php必收藏的几个经典代码
- Snoopy类使用小例子
- mysql 中InnoDB和MyISAM的区别分析小结
- snoopy PHP版的网络客户端提供本地下载
- php zend解密软件绿色版测试可用
- 修改Zend引擎实现PHP源码加密的原理及实践
- php设计模式介绍之值对象模式
- php设计模式介绍之编程惯用法
- php5 mysql分页实例代码