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.
所以,基本上我正在循环存储在$pixels. 在 for 循环中,必须有 2 个变量,$x并且$y. 变量$x需要在每个循环上增加,直到它达到预定义的边界,$xBound之后它重置为零。$y如果 $x 重置直到它到达自己的边界,变量需要增加$yBound。当达到 $y 的边界时,应该完成(大)数组循环。
$pixels
$x
$y
$xBound
$yBound
你们中有人知道如何设置吗?
你可以这样做:
for ($y=0; $y < $yBound; $y++) { for ($x=0; $x < $xBound; $x++) { // do whatever here, $pixels[$x][$y] } }