6
3

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 1 year has passed since last update.

PHP 条件演算子(三項演算子)の省略構文「??」〜null合体演算子〜

Last updated at Posted at 2020-08-05

目的

  • 先輩方が記載したコードを読んでいて初めて知ったものだったのでまとめる

三項演算子??

  • この演算子は別名null合体演算子とも呼ばれる。

  • 下記に例を記載する。

    式1 ?? 式2;
    
  • 式1がnullではない場合には式1が実行される。

  • 式1がnullの時は式2が実行される。

具体例

  • 変数$strに文字列を格納する処理を記載する。

  • 変数$base_strに文字列が格納されている時は変数$base_strの文字列を変数$strに格納する。

  • 変数$base_strがnullの時は文字列「base_str is null」を変数$strに格納する。

    $str = $base_str ?? 'base_str is null';
    

参考文献

6
3
1

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
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?