105
100

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 5 years have passed since last update.

PHP - foreachで最初と最後の処理を制御する

Last updated at Posted at 2015-06-13
$array = [1, 2, 3, 4, 5];
foreach ($array as $value) {
    if ($value === reset($array)) {
        // 最初
    }
    if ($value === end($array)) {
        // 最後
    }
}
105
100
3

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
105
100

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?