Skip to content

Instantly share code, notes, and snippets.

@kelvintaywl
Last active October 9, 2015 04:42
Show Gist options
  • Save kelvintaywl/52813b4ec3eb19355de4 to your computer and use it in GitHub Desktop.
Save kelvintaywl/52813b4ec3eb19355de4 to your computer and use it in GitHub Desktop.
daily learnings @ gengo
$a = 2;
$default = 1;
// same as the following command:
// $b = $a? $a : $default;
$b = $a ?: $default;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment