0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHP forの多重ループ

Posted at

繰り返し処理の際にforを使用していて処理が分かっていなかったため調べたときの備忘録です。

for($i = 0; $i < 3; $i++){
    for ($j = 1; $j < 4; $j++) {
        echo $i . $j . " ";
    }
}
//出力:01 02 03 11 12 13 21 22 23

####1.1番大きなfor分の処理が始まる。$i = 0
####2.中のfor分の処理が始まり、この処理が終わるまで表示が繰り返される。$j = 1から3まで
####3.2までが終わると1の$iに1が足され同じ処理が繰り返される。$i = 1

一番大きなfor文の中の処理が終わりきると一番大きなfor分が次の繰り返しに移るってことなんですが、わかりやすく書けなかったです。
語彙力もつけたいです。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?