Last active
February 17, 2021 00:32
-
-
Save frankyonnetti/cc0d3e713afdbdc99d80f1cc94bee3a4 to your computer and use it in GitHub Desktop.
PHP - ternary operation #php #ternary #shorthand
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
| var = x ? y : z | |
| // means | |
| if $x is set, use $y, if not use $z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment