博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php smarty使用..
阅读量:6265 次
发布时间:2019-06-22

本文共 832 字,大约阅读时间需要 2 分钟。

1 在你的网站目录下创建一个文件夹,名字任意,假设叫smarty_demo:

2  然后再在这个MySmarty目录下创建2个文件夹,templates和configs。 

 创建完成之后如下:    (你的网站目录)/smarty_demo/templates (这个目录用来存放模版) 

 (你的网站目录)/smarty_demo/configs (这个目录用来存放一些配置信息)

3、在smart_demo目录下再创建两个文件夹,名字分别叫:smarty_cache和smarty_templates_c。为什么刚才不一起创建呢?因为这个步骤在原来的官方资料中没有,而我在配置过P中发现,如果没有这两个文件夹,smarty将无法工作,不知道是不是官方资料的smarty版本和目前最新的版本有出入的原因。但是只要配置这两个目录,Smarty便可以顺利工作。因此建议进行配置。

template_dir = 'D:/AppServ/www/smarty_demo/templates/'; $smarty->config_dir = 'D:/AppServ/www/smarty_demo/configs/'; $smarty->cache_dir = 'D:/AppServ/www/smarty_demo/smarty_cache/'; $smarty->compile_dir = 'D:/AppServ/www/smarty_demo/smarty_templates_c/'; $smarty->assign('name','helloword'); $smarty->display('index.tpl');?>

            {$name}!;    

转载于:https://www.cnblogs.com/yangzhi/archive/2013/04/08/3576558.html

你可能感兴趣的文章
从Hash Killer I、II、III论字符串哈希
查看>>
远程使用tomcat8的首页的管理工具
查看>>
打包zip下载
查看>>
js正则表达式
查看>>
带有WS-Security验证的webservice
查看>>
【模式匹配】更快的Boyer-Moore算法
查看>>
[xsy3343]程序锁
查看>>
vue.js学习之 如何在手机上查看vue-cli构建的项目
查看>>
javascript 2词法结构
查看>>
BZOJ1008|HNOI2008 越狱
查看>>
Linux学习笔记二:Ubuntu安装SSH(Secure Shell)服务
查看>>
杭电2048--神、上帝以及老天爷
查看>>
CSS选择器
查看>>
excel
查看>>
echarts 通过ajax实现动态数据加载
查看>>
python-web-server-tcp1
查看>>
shell脚本入门
查看>>
Management
查看>>
URAL 2048 Histroy(打表+模拟)
查看>>
深入理解String, StringBuffer, StringBuilder的区别(基于JDK1.8)
查看>>