You are on page 1of 2

thiet ke web - thiet ke website - thiet ke web - Design A website

Mng ba chiu
ng ngy: 09-11-2009Ln xem: 3170

Tng t nh khai bo mng hai chiu bn cng c th khai bo mng ba chiu nh v d


di y:

$categories=array(
array(
array("TIR","Tires", 100),
array("COR","Concord", 1000),
array("BOE","Boeing", 5000)),
array(
array("TIR","Tires", 1000),
array("COR","Concord", 10000),
array("BOE","Boeing", 50000)),
array(
array("TIR","Tires", 10000),
array("COR","Concord", 100000),
array("BOE","Boeing", 500000)
)
);

Bn cng c th s dng vng lp for duyt phn t mng ng vi hng ct v loi (


category).

V d:duyt mng ba chiu.

<html><body>
Multidimential array
<br>
<?php
$categories=array(
array(
array("TIR","Tires", 100),
array("COR","Concord", 1000),
array("BOE","Boeing", 5000)),
array(
array("TIR","Tires", 1000),
array("COR","Concord", 10000),
array("BOE","Boeing", 50000)),
array(
array("TIR","Tires", 10000),
array("COR","Concord", 100000),
array("BOE","Boeing", 500000)
)
);
page 1 / 2

thiet ke web - thiet ke website - thiet ke web - Design A website

for ($cate=0;$cate<3;$cate++)
{
echo "Category $cate<br>";
for ($row=0;$row<3;$row++)
{
for ($col=0;$col<3;$col++)
{
echo "\t|\t".$categories[$cate][$row][$col];
}
echo "|<br>";
}
}
?>
</body>
</html>

admin

page 2 / 2

You might also like