Skip to content

Instantly share code, notes, and snippets.

@DomPixie
Forked from DominicWatts/Null-coalescing-operator
Created November 22, 2021 21:04
Show Gist options
  • Save DomPixie/7a7e36980b2d73aaa9bcdc94215b6666 to your computer and use it in GitHub Desktop.
Save DomPixie/7a7e36980b2d73aaa9bcdc94215b6666 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