学习PHP模版引擎出现了问题:Failed opening required 'smarty_dir.php'
我在学习PHP模板引擎Smarty入门使用时都是按照教程里讲的做的,显示为Fatalerror:require()[function.require]:Failedope...
我在学习 PHP模板引擎Smarty入门使用 时都是按照教程里讲的做的,显示为Fatal error: require() [function.require]: Failed opening required 'smarty_dir.php' (include_path='.;C:\php5\pear') in D:\wamp\www\test.php on line 2
具体代码如下:在网站根目录下的includes下文件smarty_dir.php代码为:
<?php
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = 'templates';
$smarty->config_dir = 'Smarty/config';
$smarty->cache_dir = 'smarty/cache';
$smarty->compile_dir = 'smarty/templates_c';
//上面四行为使用Smarty前的必要参数配置
?>
test.php代码为:<?php
require('smarty_dir.php');
$smarty->assign('name','张三');
$smarty->assign('content','Smarty是一个PHP模板引擎,它分开了逻辑程序和外在的内容,提供了一种易于管理的方法. ');
$smarty->display('test.html');
?>
另有test-smarty.html代码:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<h2>学习smarty</h2><hr/>
<!--{}为标识符,$name是标识名,可视为smarty处理的变量,$content同-->
你好{$name}!<br/>
恭喜你成功安装设置了smarty。<br/>
<p>{$content}</p>
</body>
</html>
为什么在localhost中执行test.php是显示
Warning: require(smarty_dir.php) [function.require]: failed to open stream: No such file or directory in D:\wamp\www\test.php on line 2
Fatal error: require() [function.require]: Failed opening required 'smarty_dir.php' (include_path='.;C:\php5\pear') in D:\wamp\www\test.php on line 2
敬请高手看看是否配置问题!不吝赐教!
补充下,在php.inf中已经进行设置过! 展开
具体代码如下:在网站根目录下的includes下文件smarty_dir.php代码为:
<?php
require('Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = 'templates';
$smarty->config_dir = 'Smarty/config';
$smarty->cache_dir = 'smarty/cache';
$smarty->compile_dir = 'smarty/templates_c';
//上面四行为使用Smarty前的必要参数配置
?>
test.php代码为:<?php
require('smarty_dir.php');
$smarty->assign('name','张三');
$smarty->assign('content','Smarty是一个PHP模板引擎,它分开了逻辑程序和外在的内容,提供了一种易于管理的方法. ');
$smarty->display('test.html');
?>
另有test-smarty.html代码:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<h2>学习smarty</h2><hr/>
<!--{}为标识符,$name是标识名,可视为smarty处理的变量,$content同-->
你好{$name}!<br/>
恭喜你成功安装设置了smarty。<br/>
<p>{$content}</p>
</body>
</html>
为什么在localhost中执行test.php是显示
Warning: require(smarty_dir.php) [function.require]: failed to open stream: No such file or directory in D:\wamp\www\test.php on line 2
Fatal error: require() [function.require]: Failed opening required 'smarty_dir.php' (include_path='.;C:\php5\pear') in D:\wamp\www\test.php on line 2
敬请高手看看是否配置问题!不吝赐教!
补充下,在php.inf中已经进行设置过! 展开
4个回答
展开全部
require('smarty_dir.php');改为require('includes/smarty_dir.php');
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
smarty_dir.php文件没找到,跟你的PHP.ini没有关系,你看看这个文件在哪里,目录一定要写正确。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
哥们还是目录问题。你仔细弄下。勿急躁。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询