有关PHP的Smarty问题

----------index.php-----------------------------<?php/*载入配置文件*/include'./config.php';... ----------index.php-----------------------------
<?php
/*载入配置文件*/
include './config.php';

/*声明数组*/
$arr=array('computerbook','name'=>'PHP从入门到精通','unit_price'=>'price');

/*将标题和数组传递给模版*/
$smarty->assign('title','使用Smarty读取数组');

$smarty->assign('arr',$arr);

$str1=array('sex'=>'man');

$str2=array('fruit'=>'apple');

$smarty->append('arr',$str1,true);

$smarty->append('arr',$str2);

/*将要显示的模版页面*/
$smarty->display('index.tpl');
?>
----------------index.tpl------------------
<html>
<head>
<title>{% $title %} </title>
</head>
<body>

{% foreach key=key item=item from=$arr %}
{% $key %}=>{% $item %}<br>
{% /foreach %}
</body>
</html>
---------------输出结果--------------------

我想问的是:1=>Array是怎么来的?
展开
 我来答
烟雨绕红花
2015-05-29 · 超过16用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:20.4万
展开全部
你这边php把数据放进$arr数组里了,通过接口传进模板里。在模板里循环了。举个例子{% $title %} 这里其实在被用正则替换了的。{% $title %}=>echo $title; 明白了吗?$smarty->display();就类似于把模板读进来,用正则替换了一下。
{% foreach key=key item=item from=$arr %}
{% $key %}=>{% $item %}<br>
{% /foreach %}
就替换为了
foreach($arr $key => $ietm){
echo $key."=>".$item;

}

把分给我吧 纯手打!
匿名用户
2015-05-29
展开全部
你生成了一个2维数组,第二个数组里没有东西而已。0是第一个数组,1是第二个。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式