阅读内容

Linux下安装并使用smarty模板引擎的初始化方法

[日期:2008-10-03] 来源:Linux社区  作者:Linux编辑


安装Smarty过程:
1 下载并且解压
2 将libs文件夹复制到目录/var/www/html
3 在/var/www/html目录下新建Mysmarty文件夹
4 在Mysmarty文件夹下新建4个文件夹cache,templates,templates_c,configs
5 将templates,templates_c权限改为777

测试Smarty


1 在Mysmarty文件夹下面建立test.php,内容如下:

<?php
 
include("/var/www/html/libs/Smarty.class.php"); //包含smarty类文件
$smarty = new Smarty(); //建立smarty实例对象$smarty
$smarty->template_dir = '/var/www/html/Mysmarty/templates';
$smarty->compile_dir = '/var/www/html/Mysmarty/templates_c';
$smarty->config_dir = '/var/www/html/Mysmarty/configs';
$smarty->cache_dir = '/var/www/html/Mysmarty/cache';
$smarty->caching = false;

$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
  

$smarty->assign("title", "test"); //进行模板变量替换
$smarty->assign("content","BBBBBBBXXXXXXXXXBBBBBBBBBBBB");

//编译并显示位于./templates下的index.tpl模板
$smarty->display("test.tpl"); //
?>


2 templates下建立test.tpl

  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  <title><{$title}></title>
  </head>
  <body>
  <{$content}>
  </body>
  </html>




本文评论       全部评论
发表评论
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款


点评: 字数
姓名:

L
I
N
U
X


GOOGLE搜索
Google