3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Which one is greatest? */ // error_reporting(E_ALL ^ E_NOTICE); $inf = INF; $array = array(); $object = (object) $array; $InfGreaterThanArray = ($inf > $array); $InfGreaterThanObject = ($inf > $object); $arrayGreaterThanInf = ($array > $inf); $arrayGreaterThanObject = ($array > $object); $objectGreaterThanInf = ($object > $inf); $objectGreaterThanArray = ($object > array()); // Test1: Is INF greatest? echo 'Inf is Greatest...: ', var_dump($InfIsGreatest = ($InfGreaterThanObject and $InfGreaterThanArray)); // Test2: Is Array greatest? echo 'Array is Greatest.: ', var_dump($arrayIsGreatest = ($arrayGreaterThanInf and $arrayGreaterThanObject)); // Test3: Is Object greatest? echo 'Object is Greatest: ', var_dump($objectIsGreatest = ($objectGreaterThanInf and $objectGreaterThanArray)); // Test4: Undefined? echo 'Undefined.........: ', var_dump( $undefined = ( ($InfIsGreatest and $InfIsGreatest == $arrayIsGreatest) || ($arrayIsGreatest and $arrayIsGreatest == $objectIsGreatest) || (!$InfIsGreatest and ($InfIsGreatest == $arrayIsGreatest and $InfIsGreatest == $objectIsGreatest)) ) );

preferences:
31.26 ms | 402 KiB | 5 Q