Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php ternary operator with elseif example

//Use this format before reducing the expression to one liner
$var=4; //Change value to test
echo "Format result: ";

echo($var === 1)    ? 'one'     : //if      NB.=> $varname = || echo || print || var_dump(ternary statement inside); can only be (placed at the start/wrapping) of the statement. 
    (($var === 2)   ? 'two'     : //elseif
    (($var === 3)   ? 'three'   : //elseif
    (($var === 4)   ? 'four'    : //elseif
    'false'                       //else
    )));                          //extra tip: closing brackets = totalnumber of conditions - 1 

// Then  echo($var === 1)?'one':(($var === 2)?'two':(($var === 3)?'three':(($var === 4)?'four':'false'))); 
echo "<br/>";
var_dump("Short result: ", ($var === 1)?'one':(($var === 2)?'two':(($var === 3)?'three':(($var === 4)?'four':'false'))) );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #php #ternary #operator #elseif
ADD COMMENT
Topic
Name
3+6 =