ternary operator php equals code example
Example 1: php != operator
$a == $b Equal TRUE if $a is equal to $b after type juggling.
$a === $b Identical TRUE if $a is equal to $b, and they are of the same type.
$a != $b Not equal TRUE if $a is not equal to $b after type juggling.
$a <> $b Not equal TRUE if $a is not equal to $b after type juggling.
$a !== $b Not identical TRUE if $a is not equal to $b, or they are not of the same type.
$a < $b Less than TRUE if $a is strictly less than $b.
$a > $b Greater than TRUE if $a is strictly greater than $b.
$a <= $b Less than or equal to TRUE if $a is less than or equal to $b.
$a >= $b Greater than or equal to TRUE if $a is greater than or equal to $b.
$a <=> $b Spaceship An integer less than, equal to, or greater than zero when $a is less than, equal to, or greater than $b, respectively. Available as of PHP 7.
Example 2: php ternary
#Ternary & Shorthand Syntax
<?php
$loggedIn = false;
$array =[1,2,3,4,5,6];
if($loggedIn){
echo 'You are logged in';
echo '<br>';
}else {
echo 'You are NOT logged in';
echo '<br>';
}
echo ($loggedIn) ? 'You are logged in' : 'You are NOT logged in';
$isRegistered = ($loggedIn == true) ? true : false;
echo '<br>';
echo $isRegistered;
$age = 9;
$score = 15;
echo'<br>';
echo 'Your score is: '.($score > 10 ? ($age >10 ? 'Average': '
Exceptional'): ($age > 10 ? 'Horrible':'Average'));
echo'<br>';
?>
//alternative syntax for conditionals and loops
<div>
<?php if($loggedIn) { ?>
<h1>Welcome User</h1>
<?php }else{ ?>
<h1>Welcome Guest</h1>
<?php } ?>
</div>
//
<div>
<?php if($loggedIn): ?>
<h1>Welcome User</h1>
<?php else: ?>
<h1>Welcome Guest</h1>
<?php endif; ?>
</div>
//
<div>
<?php foreach($array as $val): ?>
<?php echo $val; ?>
<?php endforeach; ?>
</div>
//
<div>
<?php for($i = 0; $i < 10; $i++): ?>
<li> <?php echo $i; ?></li>
<?php endfor; ?>
</div>