Addendum : Integer : Language Basics PHP Source Code


PHP Source Code » Language Basics » Integer »

 

Addendum



<?
function maxint(){ 
  $to_test = 2;
  while(1){
     $last = $to_test;
     $to_test = * $to_test;
     if (($to_test < $last|| (!is_int($to_test))){
         return($last + ($last - 1));
     }    
   }
}

$maxint = maxint();
print("Maxint is $maxint<BR>");
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Integer