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?

【PHP】演算子の優先順位

Last updated at Posted at 2024-10-07

変数$hogenullだったらtrueを返したい処理を書いてたとき、
演算子の優先順位で少し詰まったので、備忘録として残します。

$hoge = null
return (bool) $hoge ?? true;

これはtrueが返りそうですがfalseが返ります。
実は型キャスト演算子は、優先的に処理される部類の演算子です。
PHPのリファレンスによると、型キャスト演算子 → null合体演算子の順で評価されます。
PHP: 演算子の優先順位 - Manual

なので、null合体演算子 → 型キャスト演算子の順で評価したいのであれば、
括弧でグループ化してあげて、以下のように優先順位を決めます。

$hoge = null
return (bool) ($hoge ?? true); // true
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?