Skip to content

Instantly share code, notes, and snippets.

@DominicWatts
Created February 22, 2020 00:37
Show Gist options
  • Select an option

  • Save DominicWatts/badd9edf2c554fc5936385844ceb3884 to your computer and use it in GitHub Desktop.

Select an option

Save DominicWatts/badd9edf2c554fc5936385844ceb3884 to your computer and use it in GitHub Desktop.
PHP : Null coalescing operator (??) #php
$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