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?

【ノート】PHP foreach文

Posted at
foreach文
foreach(配列 as 各要素の添え字が代入される変数 => 各要素の値が代入される変数){
    繰り返したい処理
}
foreach($numbers as $key => $value){
    echo"添え字". $key. "番は";
    echo $value. "です。<br>";
}

チェックボックスとの関係
チェックボックスからデータを送る場合、選択されたものを配列として送るのでforeach文で処理する。

0
0
0

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?