
Write a example code showing the nested ternary conditional operator in PHP?
Last updated 3 years, 9 months ago | 2103 views 75 5

PHP | Nested ternary conditional operator
An example code showing the nested ternary conditional operator in PHP.
<?php
$background_color = ($num == 0 ? 'blue' : ($num > 0 ? 'green' : 'red'));
?>
Here we are assigning different strings to the $background_color variable based on a numeric value ($num).