<?php
echo true ? '1' : false ? '2' : '3';
echo "\n";
echo true ? '1' : (false ? '2' : '3');

//https://pt.stackoverflow.com/q/342725/101