Skip to content

Instantly share code, notes, and snippets.

@DominicWatts
Created February 22, 2020 00:37
Show Gist options
  • Save DominicWatts/badd9edf2c554fc5936385844ceb3884 to your computer and use it in GitHub Desktop.
Save DominicWatts/badd9edf2c554fc5936385844ceb3884 to your computer and use it in GitHub Desktop.
Null coalescing operator (??)
$action = $_POST['action'] ?? 'default';
// The above is identical to this if/else statement
if (isset($_POST['action'])) {
$action = $_POST['action'];
} else {
$action = 'default';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment