Answers for "ternary operator php 7"

PHP
3

php shorthand if isset

$var = $var ?? "default";
Posted by: Guest on May-29-2020
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
6

ternary operator in php

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

ternary operator for three conditions in php

$foo = your_value;
$bar = ($foo == 1) ? "1" : (($foo == 2)  ? "2" : "other");
echo $bar;
Posted by: Guest on July-13-2020

Browse Popular Code Answers by Language