配列のすべての要素を出力するサンプルコード. <?php $array = ['apple', 'orange', 'lemon']; foreach($array as $value){ echo $value; echo "\n"; } ...
確定! 回上一頁