Skip to content

Instantly share code, notes, and snippets.

@matstani
Created January 31, 2018 07:40
Show Gist options
  • Save matstani/47c1750a814b0a58332ae4f71ab7fa7d to your computer and use it in GitHub Desktop.
Save matstani/47c1750a814b0a58332ae4f71ab7fa7d to your computer and use it in GitHub Desktop.
Null coalescing in php7
$person = ['name' => 'matsutani'];
if ($name = $person['name'] ?? null) {
echo "hello, ${name}.\n";
} else {
echo "you are anonymous.\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment