Add ternary example (#24581)

This commit is contained in:
Parth
2018-12-13 08:20:36 +00:00
committed by Randell Dawson
parent 012e93154b
commit c2de333137

View File

@ -90,9 +90,19 @@ For instance:
## Ternary Operators
Another important option to consider when using short If/Else statements is the ternary operator.
Another option to consider when using short If/Else statements is the ternary operator.
Also there is an alternative syntax for control structures
For instance:
```
<?php
$var = (condition) ? (value if true) : (value if false);
```
## Alternative If/Else Syntax
There is also an alternative syntax for control structures
~~~~
if (condition1):
statement1;