Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created April 20, 2017 14:28
Show Gist options
  • Save alandbh/34629b9ef2b6c0dcb1e6a6d69a122710 to your computer and use it in GitHub Desktop.
Save alandbh/34629b9ef2b6c0dcb1e6a6d69a122710 to your computer and use it in GitHub Desktop.
Shorthand for IF / ELSE statement. (or ternary)
/* echo, inline */
echo 'Based on your score, you are a ',($score > 10 ? 'genius' : 'nobody'); //harsh!
/* shorthand usage */
$message = 'Hello '.($user->get('first_name') ?: 'Guest');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment