Smarty安装配置方法
程序员文章站
2022-06-16 19:30:30
...
下载最新的Smarty:http://smarty.php.net/
当前最新版本:2.6.18
解压后将目录中的libs目录重命名为smarty,复制到你的网站目录,同时在网站根目录下建立templates和templates_c两个目录
建立test.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:
{{$test}}
打开test.php,如果看到OK就说明你的smarty安装成功了!
当前最新版本:2.6.18
解压后将目录中的libs目录重命名为smarty,复制到你的网站目录,同时在网站根目录下建立templates和templates_c两个目录
建立test.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:
{{$test}}
打开test.php,如果看到OK就说明你的smarty安装成功了!
推荐阅读
-
Smarty中调用FCKeditor的方法,smartyfckeditor
-
安装MySQL 5后无法启动(不能Start service)解决方法小结
-
PHP 访问数据库配置通用方法(json)
-
Oracle删除后不能重新安装的解决方法
-
MySQL 5.6.14 win32安装方法(zip版)
-
MySql 5.6.14 winx64配置方法(免安装版)
-
ThinkPHP整合Smarty模板引擎的使用以及查询方法汇总_PHP教程
-
MySQL学习笔记1:安装和登录(多种方法)
-
用于deeplink的js方法(判断手机是否安装app)_javascript技巧
-
centos下nginx+tomcat安装配置 nginx结合tomcat