简单php 模板引擎 smarty 不明白
一个最最简单的应用smarty的实例操作,却莫名出错,晕死中。。我写一个简单demoa.php文件如下:<?phpinclude("Smarty_inc.php");$n...
一个最最简单的应用smarty 的实例操作,却莫名出错,晕死中。。
我写一个简单demoa.php文件如下 :
<?php
include("Smarty_inc.php");
$name[]=array("name"=>"ff","date"=>"09-08-16");
$name[]=array("name"=>"fdf","date"=>"09-08-17");
$name[]=array("name"=>"weew","date"=>"09-08-18");
$row=array("中国","日本","韩国");
$smarty->assign("title",$name);
$smarty->assign("row",$row);
$smarty->display("demo1.htm");
?>
然后下面就是用到的demo1.htm模板:
<html>
{section name=list loop=$title}
<b><font color=red>
{$title[list].name - $title[list].date}
</font></b><br>
{/section}
<hr>
<h1>{$row[0]}
<h2>{$row[1]}
</html>
小弟有几点不明白:
1,是该运行demoa.php,还是运行demo1.htm呢??
2,运行demoa.php,出错了:
Warning: Smarty error: unable to read resource: "demo1.htm" in C:\xampp\htdocs\Smarty\Smarty.class.php on line 1093???
Smarty.class.php 这个是它自己的函数,怎么也会错,
3,运行demo1.htm,也出错了,只显示这样:
section name=list loop=$title} {$title[list].name - $title[list].date}
{/section}
--------------------------------------------------------------------------------
{$row[0]}
{$row[1]}
受不了!
高手帮帮忙。。。
Smarty_inc.php文件是这样的:
<?php
include_once("Smarty/Smarty.class.php");
$smarty = new Smarty();
$smarty ->config_dir="Smarty/Config_File.class.php";
$smarty ->caching=false;
$smarty ->template_dir="./templates";
$smarty ->compile_dir="./templates_c";
$smarty ->cache_dir="./smarty_cache";
$smarty ->left_delimiter="{";
$smarty ->right_delimiter="}";
?>
加上$smarty->template_dir = './';还是一样的问题。。。。 展开
我写一个简单demoa.php文件如下 :
<?php
include("Smarty_inc.php");
$name[]=array("name"=>"ff","date"=>"09-08-16");
$name[]=array("name"=>"fdf","date"=>"09-08-17");
$name[]=array("name"=>"weew","date"=>"09-08-18");
$row=array("中国","日本","韩国");
$smarty->assign("title",$name);
$smarty->assign("row",$row);
$smarty->display("demo1.htm");
?>
然后下面就是用到的demo1.htm模板:
<html>
{section name=list loop=$title}
<b><font color=red>
{$title[list].name - $title[list].date}
</font></b><br>
{/section}
<hr>
<h1>{$row[0]}
<h2>{$row[1]}
</html>
小弟有几点不明白:
1,是该运行demoa.php,还是运行demo1.htm呢??
2,运行demoa.php,出错了:
Warning: Smarty error: unable to read resource: "demo1.htm" in C:\xampp\htdocs\Smarty\Smarty.class.php on line 1093???
Smarty.class.php 这个是它自己的函数,怎么也会错,
3,运行demo1.htm,也出错了,只显示这样:
section name=list loop=$title} {$title[list].name - $title[list].date}
{/section}
--------------------------------------------------------------------------------
{$row[0]}
{$row[1]}
受不了!
高手帮帮忙。。。
Smarty_inc.php文件是这样的:
<?php
include_once("Smarty/Smarty.class.php");
$smarty = new Smarty();
$smarty ->config_dir="Smarty/Config_File.class.php";
$smarty ->caching=false;
$smarty ->template_dir="./templates";
$smarty ->compile_dir="./templates_c";
$smarty ->cache_dir="./smarty_cache";
$smarty ->left_delimiter="{";
$smarty ->right_delimiter="}";
?>
加上$smarty->template_dir = './';还是一样的问题。。。。 展开
5个回答
展开全部
推荐你看php100里面的smarty视频教程,当然运行php文件了,另外绝对不是Smarty.class.php出错,肯定是你写的不对,我遇到过这种情况,结果还是我的代码有错误,把loop=$title改成loop=$arr试试,另外php里面的家上$arr[]=$row和$smarty->assign("arr",$arr);
我用smarty不多,你试试吧。。。
我用smarty不多,你试试吧。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看看是不是路径问题
例如:html模版文件是放在Templates文件夹下的。如果运行时Templates下没有对应的html文件,就会提示unable to read resource: "demo1.htm"----demo1.html无法读取。
看一下文件路径.
例如:html模版文件是放在Templates文件夹下的。如果运行时Templates下没有对应的html文件,就会提示unable to read resource: "demo1.htm"----demo1.html无法读取。
看一下文件路径.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果你的html页面和php页面在同个目录下时,请用下面这句设定路径
$smarty->template_dir = './';/*把这个加在include("Smarty_inc.php");下面就行了*/
$smarty->template_dir = './';/*把这个加在include("Smarty_inc.php");下面就行了*/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
朋友,你上面的smarty 用法用错了。可以看看php100里面好像是26---30讲关于smarty 模板引擎技术。我用smarty 不是你这样用的~!
关于 section 我也基本不用
{section name=list loop=$title},这一句可以不要
下面应该可以直接输出{$row.name}吧
关于 section 我也基本不用
{section name=list loop=$title},这一句可以不要
下面应该可以直接输出{$row.name}吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
运行demoa.php 你想知道怎么做 我的空间里有详细的使用说明
http://hi.baidu.com/zchare/blog/item/9c4bda07154255c47a894745.html
自己看吧
http://hi.baidu.com/zchare/blog/item/9c4bda07154255c47a894745.html
自己看吧
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询