Warning: Invalid argument supplied for foreach() in /home/jihswbiz/public_html/t6.gwilt.org/refDox.php on line 212
Docs-is_ugt

 

ReLoad

Keys


Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml

Function  is_ugt   Lines 1444-1463 (19 lines) file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function is_ugt $a$b )
        {
#-k     math is
#       unsigned GT
#-      return true if a '>' b
#-s     See also: rem fix is_uge umax

        
if (($a >= 0)  and  ($b >= 0))
                {                                               
# a+ & b+, so do compare
                
if ($a $b)    return true;
                else            return 
false;
                }
        elseif (
$a >= 0)                { return false; }       # a+ & b-, so b greater
        
else
                {                                               
# a- & b-, so do opposite compare
                
if ($a $b) return true;
                }
        return 
false;
        }

?>