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

【PHP】配列のnullチェック

Posted at

foreachで使う変数がnullの場合エラーが起こるため事前に配列の中身をチェックします。

#変数のnullチェック
通常、変数に値があるかどうかを確認したいのであればempty()やisset()関数を用いることが多いと思います。

index.php
    if(!empty($array)){
        foreach($array as $value){
            処理
        }
    }
index.php
    if(isset($array)){
        foreach($array as $value){
            処理
        }
    }

上記の場合、変数の中身が配列で確定しているのであれば問題ないですが、単なる変数のnullチェックになるので中身が配列型で入って来ているかの確認はできません。

#変数が配列型かどうかをチェック

index.php
    if(is_array($array)){
        foreach($array as $value){
            処理
        }
    }

is_array関数を使えば変数の中身が配列型かどうかの確認ができます。

もっと簡潔に書く場合、変数を配列にキャストさせるといった書き方もできるみたいです。

index.php
    foreach ((array)$array as $value) {
        処理
    }

参考文献:
https://quartet-communications.com/info/topics/7094

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?