smarty_安装与测试

smarty应用一
1.安装
 tar -zvxf Smarty-2.6.18.tar.gz
 #进入解压目录,smarty_lib是新命名的文件夹
 cp libs/* /var/www/smarty_lib/
 cd /var/www
 mkdir configs templates templates_c
2.测试
在templates中建立test.htm文件:
<html> <head> <title>Smarty Test</title> </head> <body> <H1>Hello, {$Name}</H1> </body> </html>
在templates之外的文件中建立test.php
<?php require 'smarty_lib/Smarty.class.php'; //包含Smarty类库文件 $smarty = new Smarty; //创建一个新的Smarty对象 $smarty->assign("Name","Simon"); //对模版中的变量赋值 $smarty->display('test.htm'); //显示页面 ?>

你可能感兴趣的:(html,c,测试,templates)