php ternary if code example

Example 1: php ternary operator

(Condition) ? (Statement1) : (Statement2);

Example 2: ternary operator in php

<?php
$marks=40;
print ($marks>=40) ? "pass" : "Fail";
?>

Example 3: php ternary operator

<?php 
#Syntex  
(if Condition) ? (stat1) : (stat2);

#example
$var1 = 5;
$var2 = 2;

echo $check = ($var1 > $var2) ? "right" : "wrong";

#output : right
/*
explination : if condition is true then display the stat1 and if condition is 
worng then display stat2
*/
?>

Example 4: php ternary

$result = $condition ? 'foo' : 'bar';

Example 5: if else if ternary php

var name = (variable === 1) ? 'foo' : ((variable === 2) ? 'bar' : 'baz');

Example 6: php ternary operators

// Both ternary and if/else returns the same result

// ternary
$result = $condition ? 'foo' : 'bar';

// if/else
if ($condition) {
    $result = 'foo' 
} else {
    $result = 'bar'
}

Tags:

Php Example