6
5

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.

型キャストと??の組み合わせ、そこをなんとか頼みたい

Posted at

イマドキならさ、

$hogehoge = $_GET['hogehoge'] ?? 'unless';

ってしたいじゃない?(えっ、$_GETに気軽に触ってイイのは小学生までだって?)

$hogehoge = (string)$_GET['hogehoge'] ?? 'unless';

でも、色々考えると、こうしたいなって思う事あるじゃない?

「ところが残念!Undefined indexです!!!」

$hogehoge = (string)($_GET['hogehoge'] ?? 'unless');

しかたなくこうなるじゃん?

「それは型指定ではない、キャストだ、そうなるのは当たり前だうつけめ」

…という声は聞こえてきますが、そこをなんとか頼む…という気分になっています。

眠いのでそろそろ寝ます

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?