diff options
| -rw-r--r-- | php.html.markdown | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/php.html.markdown b/php.html.markdown index 75bbd214..f0c5c918 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -231,6 +231,9 @@ if (false) {      print 'Does';  } +// ternary operator +print (false ? 'Does not get printed' : 'Does'); +  $x = 0;  if ($x === '0') {      print 'Does not print'; @@ -240,6 +243,8 @@ if ($x === '0') {      print 'Does print';  } + +  // This alternative syntax is useful for templates:  ?> | 
