Home > Backend Development > PHP Tutorial > 请问二维数组矩阵算法

请问二维数组矩阵算法

WBOY
Release: 2016-06-13 12:01:50
Original
1013 people have browsed it

请教二维数组矩阵算法

<br />$ary = array(<br />	'a'=>array('a1','a2'),<br />	'b'=>array('b1','b2'),<br />	'c'=>array('c1','c2'),<br />);<br />
Copy after login

如何把上面的数组,输出到页面成这样啊

------解决方案--------------------
<br /><br />echo '<table width="150px" border="1">';<br />foreach($ary['a'] as $aV){<br />	foreach($ary['b'] as $bV){<br />		foreach($ary['c'] as $cV){<br />			echo "<tr><td>$aV</td><td>$bV</td><td>$cV</td></tr>";<br />		}<br />	}<br />}<br />echo '</table>';<br /><br />
Copy after login

------解决方案--------------------
本帖最后由 xuzuning 于 2014-07-10 18:39:24 编辑

$ary = array(<br />    'a'=>array('a1','a2'),<br />    'b'=>array('b1','b2'),<br />    'c'=>array('c1','c2'),<br />);<br /><br />echo "<table>\n";<br />echo "<tr><td>a</td><td>b</td><td>c</td></tr>\n";<br />foreach($ary['a'] as $m) {<br />  foreach($ary['b'] as $n) {<br />    foreach($ary['c'] as $v) {<br />      echo "<tr><td>$m</td><td>$n</td><td>$v</td></tr>\n";<br />    }<br />  }<br />}<br />echo "</table>";
Copy after login
[code=html]











a b c
a1 b1 c1
a1 b1 c2
a1 b2 c1
a1 b2 c2
a2 b1 c1
a2 b1 c2
a2 b2 c1
a2 b2 c2

/code]
------解决方案--------------------
精华区 迪尔卡积  我问的问题....前后几篇 很完整了
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template