LoginSignup
0
0

More than 5 years have passed since last update.

自分用メモ~php~

Posted at

1.注意事項

初心者のメモです.

2.環境

  • windows 10
  • PHP 7.3.2

3.本文

自分が知らなかったことをまとめます.

3.1.foreach

配列に対して繰り返し処理を行う際に使用します.

3.1.1具体例

foreach.php
<?php
   $fluit = array('apple','orange','lemon');
   foreach ($fluit as $value) {
       print($value.'<br>');
   }
?>

3.1.2結果

apple
orange
lemon

4.追伸

勉強している最中なので,更新する予定です.

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