Skip to content

Instantly share code, notes, and snippets.

@itogen
Last active February 10, 2020 09:47
Show Gist options
  • Save itogen/14850489e0aeaaa57872822053e8aaa0 to your computer and use it in GitHub Desktop.
Save itogen/14850489e0aeaaa57872822053e8aaa0 to your computer and use it in GitHub Desktop.
【PHPなど】エルビス演算子 ?: 本当にエルビス・プレスリーだった【画像あり】 ref: https://qiita.com/ito_gen/items/7650454fbb27baefc1f7
$hoge = isset($_GET['hoge']) ? $_GET['hoge'] : null;
$hoge = $_GET['hoge'] ?? null;
$hoge = $_GET['hoge'] ?: null;
// ↑ 同じ動き ↓
if ($_GET['hoge']) ? $_GET['hoge'] : null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment