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

安装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,内容如下:

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

  0b1331709591d260c1c78e86d0c51c18.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值