smarty 安装问题????
我安装smarty后无法测试!??!?!请哪位高手帮忙看看我的测试文件是否正确:<?phprequire('Smarty.class.php');$smarty=newS...
我安装smarty后无法测试!??!?!
请哪位高手帮忙看看我的测试文件是否正确:
<?php
require('Smarty.class.php');
$smarty=new Smarty();
$smarty->template_dir='C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/smarty/templates';
$smarty->config_dir='C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/smarty/config';
$smarty->cache_dir='D:/smarty/smarty_cache';
$smarty->compile_dir='D:/smarty/smarty_templates_c';
$smarty->assign('name','fish boy!');
$smarty->display('index.tpl');
?> 展开
请哪位高手帮忙看看我的测试文件是否正确:
<?php
require('Smarty.class.php');
$smarty=new Smarty();
$smarty->template_dir='C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/smarty/templates';
$smarty->config_dir='C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/smarty/config';
$smarty->cache_dir='D:/smarty/smarty_cache';
$smarty->compile_dir='D:/smarty/smarty_templates_c';
$smarty->assign('name','fish boy!');
$smarty->display('index.tpl');
?> 展开
1个回答
展开全部
我是这样安装的,也许对你有帮助吧
方法如下:
第一部分:文件夹配置
第一步:解压得到的文件夹命名为smarty,放在网站根目录。
第二步:在smarty里面新建一个mysmarty文件夹。
第三步将smarty里面的libs文件夹里面的文件全部移动到mysmarty文件夹中。
第四步:在mysmarty文件夹里新建config,templates,smarty_templates_c,smarty_cache文件夹。
第二部分:单页文件
第五步:在mysmarty文件夹下新建index.php
第六步:在mysmarty文件夹下的template文件夹下新建index.tpl
——————index.php代码为
<?php
//载入Smarty库
include("Smarty.class.php");
$smarty = new Smarty;
//下面的(你的网站目录)用绝对路径,比如d:/intepub/wwwroot
$smarty->template_dir = 'E:/APMServ/smarty/mysmarty/templates';
$smarty->config_dir = 'E:/APMServ/smarty/mysmarty/config';
$smarty->cache_dir = 'E:/APMServ/smarty/mysmarty/smarty_cache';
$smarty->compile_dir = 'E:/APMServ/smarty/mysmarty/smarty_templates_c';
//上面四行为使用Smarty前的必要参数配置
$smarty->assign('name','这是第一个smarty!');
$smarty->display('templates/index.tpl');
?>
——————————————index.tpl代码为
<html>
<body>
你好,{$name}
</body>
</html>
第三步分:测试
第七步:运行index.php
运行结果
你好,这是第一个smarty!
方法如下:
第一部分:文件夹配置
第一步:解压得到的文件夹命名为smarty,放在网站根目录。
第二步:在smarty里面新建一个mysmarty文件夹。
第三步将smarty里面的libs文件夹里面的文件全部移动到mysmarty文件夹中。
第四步:在mysmarty文件夹里新建config,templates,smarty_templates_c,smarty_cache文件夹。
第二部分:单页文件
第五步:在mysmarty文件夹下新建index.php
第六步:在mysmarty文件夹下的template文件夹下新建index.tpl
——————index.php代码为
<?php
//载入Smarty库
include("Smarty.class.php");
$smarty = new Smarty;
//下面的(你的网站目录)用绝对路径,比如d:/intepub/wwwroot
$smarty->template_dir = 'E:/APMServ/smarty/mysmarty/templates';
$smarty->config_dir = 'E:/APMServ/smarty/mysmarty/config';
$smarty->cache_dir = 'E:/APMServ/smarty/mysmarty/smarty_cache';
$smarty->compile_dir = 'E:/APMServ/smarty/mysmarty/smarty_templates_c';
//上面四行为使用Smarty前的必要参数配置
$smarty->assign('name','这是第一个smarty!');
$smarty->display('templates/index.tpl');
?>
——————————————index.tpl代码为
<html>
<body>
你好,{$name}
</body>
</html>
第三步分:测试
第七步:运行index.php
运行结果
你好,这是第一个smarty!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询