Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个代码:
<?php $multiplicand=1; for($i=0;$i<=1;$i++) { $product[$i][$multiplicand] = $multiplicand*$i; }
我应该将数组的大小更正为 231 x 537,我必须访问 [167][31]。有趣的是我的讲师说表格应该从0开始。请帮我做必要的安排/更正。
您需要在现有的循环中添加另一个循环。然后你可以从 0 0 开始到 231 537。只要让两者都从 0 ($i = 0, $j = 0) 开始到 231 和 537 ($i < 231, $j < 537)。
你还需要谷歌二维数组