mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
This commit is contained in:
commit
8ffd02feff
@ -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:
|
||||
?>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user