各位大神,小弟有个PHP的问题,如何把已经存在PHP里的数据按顺序打出来?用foreach的方法

这是已经存在PHP里的数据:<?php$difficulty_names=array(1=>"Easy",2=>"Hard",3=>"Insane");$testcham... 这是已经存在PHP里的数据:
<?php
$difficulty_names = array(
1 => "Easy",
2 => "Hard",
3 => "Insane"
);
$testchambers = array (
10 => array(
"name" => "The tenth",
"objects" => array(),
"difficulty" => 1
),
11 => array(
"name" => "A harder test chamber",
"objects" => array(
"toxic water",
"high energy pellet"
),
"difficulty" => 2
),
12 => array(
"name" => "Has three things!!",
"objects" => array(
"cube dispenser",
"falling cube",
"portal gun"
),
"difficulty" => 3
)
);
图片是结果
展开
 我来答
novice_pegasus
2013-02-24 · TA获得超过624个赞
知道小有建树答主
回答量:722
采纳率:100%
帮助的人:646万
展开全部
echo '<table>';
foreach($testchambers as $k=>$eacharr){
echo '<tr>';
$val = ($k==10) ? 'The tenth':$k;

echo '<td>'.$val.'</td>';
echo '<td>'.$eacharr['name'].'</td>';
$objs = implode(' ', $eacharr['objects']);
$objs = ($objs=="") ? "none":$objs;
echo '<td>'.$objs.'</td>';

echo '<td>'.$difficulty_names[$eacharr['difficulty']].'</td>';
echo '</tr>';

}
echo '</table>';
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式