Among the following, which one is a ternary operator? code example
Example: How many operands does a ternary operator have?
<?php
$i = 0;
while ((--$i > ++$i) - 1)
{
print $i;
}
?><?php
$i = 2;
while (++$i)
{
while ($i-- > 0)
print $i;
}
?>