Created
April 20, 2017 14:28
-
-
Save alandbh/34629b9ef2b6c0dcb1e6a6d69a122710 to your computer and use it in GitHub Desktop.
Shorthand for IF / ELSE statement. (or ternary)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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