'ello all.
I can't really find anything on the net (cause I don't know what to search for) to see if something like this will be supported in the future:
<?php
if(1 < 2 < 3)
echo 'True';
else
echo 'False';
Logically I would see that as returning true, since 1 is less than 2 and 2 is less than 3. Just looking for a numbers shortcut ...
i.e.
<?php
$num = 5;
if(0 < $num < 10)
echo $num.' is less than 10 and greater than 0';
Instead of:
<?php
$num = 5;
if($num > 0 && $num < 10)
echo $num.' is less than 10 and greater than 0';