1. 下载最新的smarty。php
2. 下载的smarty内核文件夹libs,放入php网站文件夹内。(安全起见,可自行修改文件夹名,如更名为smarty)html
3. 分别在网站目录下创建templates、templates_c、configs、cache四个文件夹。安全
4. 在templates/目录下写模板,创建index.htm内容为:测试
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- {$vice}
- </body>
- </html>
OK,咱们来测试一下,php调用smarty,编写以下程序:网站
- <?php
- include('smarty/Smarty.class.php');
-
- const DIR_SEP = DIRECTORY_SEPARATOR;
- define('SITE_ROOT', dirname(__FILE__).DIR_SEP);
-
- $smarty = new Smarty;
- $smarty->template_dir = SITE_ROOT.'templates'.DIR_SEP;
- $smarty->complie_dir = SITE_ROOT.'templates_c'.DIR_SEP;
- $smarty->config_dir = SITE_ROOT.'configs'.DIR_SEP;
- $smarty->cache_dir = SITE_ROOT.'cache'.DIR_SEP;
-
- $smarty->assign(vice,'hello vice!');
- $smarty->display('index.htm');
- ?>
ui
输出结果:hello vice!spa