Try following example to understand the conditional operator.
$a = 10; $b = 20; /* If condition is true then assign a to result otheriwse b */ $result = ($a > $b ) ? $a :$b; echo $result;
Here $a is if condition and $b is in else condition.
You might also like:
Simple Array Sum | Javascript | hackerrank.com07-05-2020 hackerrank.com javascript arrays array sum |
Convert and download html to pdf without saving file28-10-2018 node js convert html to pdf pdf download pdf without saving |
Using slice remove last two characters from given string07-03-2017 slice remove |
Filter for change Date format (MM-dd-yyyy) in Angular Js05-03-2017 mm-dd-yyyy date formats angular js |
Email validation regular expression in javascript22-02-2017 email validation regex |