What does this return?


<?php
$a 
3;
echo 
$a == 'one' $a == 'two' $a == 'three' $a == 'four' 'other';
?>

In PHP 7.4:


Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated.
  Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in example.php on line 3

Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated.
  Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in example.php on line 3

Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated.
  Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in example.php on line 3