smarty问题 15
tpls.php<?phpinclude_once("./libs/Smarty.class.php");//包含smarty类文件$smarty=newSmarty()...
tpls.php
<?php
include_once("./libs/Smarty.class.php"); //包含smarty类文件
$smarty = new Smarty(); //建立smarty实例对象$smarty
$smarty->template_dir = "./Practice";//设置模板目录
$smarty->compile_dir = "./templates_c"; //设置编译目录
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
$smarty->assign("name", "李晓军"); //进行模板变量替换
//编译并显示位于./templates下的index.tpl模板
$smarty->display("index.tpl");
?>
index.tpl
<html>
<head>
<title>大师兄smarty教程</title>
</head>
<body>
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。
<hr>
<center> CopyRight(C) by 大师兄 2004年8月 Email: teacherli@163.com </center>
<hr>
</body>
</html>
Warning: Smarty error: unable to read resource: "index.tpl" in D:\xampp\htdocs\Practice\libs\Smarty.class.php on line 1092
会出现这个错误?文件已经和php文件同一个目录了?什么问题呢?
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。
改成
大家好,我叫<{$name}>, 欢迎大家阅读我的smarty学习材料。
就可以了... 展开
<?php
include_once("./libs/Smarty.class.php"); //包含smarty类文件
$smarty = new Smarty(); //建立smarty实例对象$smarty
$smarty->template_dir = "./Practice";//设置模板目录
$smarty->compile_dir = "./templates_c"; //设置编译目录
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
$smarty->assign("name", "李晓军"); //进行模板变量替换
//编译并显示位于./templates下的index.tpl模板
$smarty->display("index.tpl");
?>
index.tpl
<html>
<head>
<title>大师兄smarty教程</title>
</head>
<body>
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。
<hr>
<center> CopyRight(C) by 大师兄 2004年8月 Email: teacherli@163.com </center>
<hr>
</body>
</html>
Warning: Smarty error: unable to read resource: "index.tpl" in D:\xampp\htdocs\Practice\libs\Smarty.class.php on line 1092
会出现这个错误?文件已经和php文件同一个目录了?什么问题呢?
大家好,我叫{$name}, 欢迎大家阅读我的smarty学习材料。
改成
大家好,我叫<{$name}>, 欢迎大家阅读我的smarty学习材料。
就可以了... 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询