Answers for "ternary operator in php"

PHP
6

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
*/
?>
Posted by: Guest on June-15-2020
11

php ternary operator

(Condition) ? (Statement1) : (Statement2);
Posted by: Guest on April-23-2020
6

ternary operator in php

<?php
$marks=40;
print ($marks>=40) ? "pass" : "Fail";
?>
Posted by: Guest on July-03-2020
1

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'
}
Posted by: Guest on January-07-2021
1

?? ternary operator in php

echo $color = $color ?? 'red';	//if value not exists then assign to them.
Posted by: Guest on September-03-2021
0

ternary operator in php

<?php
  $x=4;
  $y=3;
  if(x>y)?echo"X is large": echo "y is large";

 ?>
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language