ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
IntOrFloat.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class IntOrFloat
6 {
15  public static function evaluate($value)
16  {
17  $iValue = (int) $value;
18 
19  return ($value == $iValue) ? $iValue : $value;
20  }
21 }
static evaluate($value)
Help some functions with large results operate correctly on 32-bit, by returning result as int when p...
Definition: IntOrFloat.php:15