Answers for "php if else if one line"

PHP
5

write if and else in one line php

$result = ($data->status == 1) ? 'active' : 'disable'
Posted by: Guest on November-08-2020
2

one line if statement php

echo ($var1 >= $var2) ? 'this is true' : 'this is false';
Posted by: Guest on April-19-2021
0

php one line if without else

$thisVar != $thatVar ?: doThis();
or
($thisVar == $thatVar) && doThis();
or
if ($thisVar == $thatVar) doThis();
Posted by: Guest on May-01-2021

Browse Popular Code Answers by Language