为了账号安全,请及时绑定邮箱和手机立即绑定

smarty模板无法加载如何解决?

smarty模板无法加载如何解决?

PHP
慕容粉丝 2017-01-13 23:28:16
相同的模板,但是test.php可以加载,运行后出结果,但是使用与test.php同一个路径下的commetn.php确提示无法加载模板comment.tpl,请问如何解决?谢谢。文件路径截图:smarty.ini.php代码:<?php //定义ROOT常量,用来获取smarty模板引擎的存放绝对路径 define('ROOT',str_replace('\\','/',realpath(__DIR__.'/../'))); include ROOT.'/libs/Smarty.class.php'; $smarty = new Smarty; ?>test.php代码:<?php include 'smarty.ini.php'; $smarty -> assign('title','1'); $smarty -> assign('content','2'); $smarty -> display('comment.tpl'); ?>commetn.php代码:<?php include 'smarty.ini.php'; $smarty -> assign('title','HTML注释与Smarty模板引擎注释的区别'); $smarty -> assign('content','<b>HTML注释会在页面源码中出现,而smarty注释则不会, smarty注释的方法是在将注释内容用*号包围,而星号又被左右定界符包围。</b>'); $smarty -> display('commetn.tpl'); ?>commetn.tppl代码:<html> <head> <title>{$title}</title> </head> <body> <!--这里是HTML注释,会在html页面源码中出现--> {$content} {* 这是smarty注释,不会被解析,无法在页面源代码中出现 *} </body> </html>求大神帮忙解决,谢谢
查看完整描述

1 回答

?
KevenHuang

TA贡献280条经验 获得超233个赞

如果觉得没有加载成功,可以首先打印一下路径是不是正确的,再一步步的去排错。
查看完整回答
反对 回复 2017-01-14
  • 1 回答
  • 0 关注
  • 2759 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信