首页上一页 1 下一页尾页 1 条记录 1/1页
关于Smarty路径问题
发表在PHP图书答疑
2018-09-15 悬赏:1 学分
《PHP从入门到精通(第4版)》第21章 Smarty模板技术
是否精华
是
否
版块置顶:
是
否
在例21.4中,运行index.php文件后,按照模板文件夹下04文件夹中的index.html模板文件显示输出报错。警告和报错信息如下: Warning: require_once(D:\wamp\www\lx\21\Smarty\internals\core.load_plugins.php): failed to open stream: No such file or directory in D:\wamp\www\lx\21\Smarty\templates_c\%%9E^9E8^9E875C78%%index.html.php on line 3 Fatal error: require_once(): Failed opening required 'D:\wamp\www\lx\21\Smarty\internals\core.load_plugins.php' (include_path='.;C:\php\pear') in D:\wamp\www\lx\21\Smarty\templates_c\%%9E^9E8^9E875C78%%index.html.php on line 3
我仔细看代码没有错。请老师指教!谢谢!代码如下:
<?php
include_once '../config.php';
$smarty->display('04/index.html');
?>