PHP: Floating point numbers - Manual - PHP: Hypertext Preprocessor
In some cases you may want to get the maximum value for a float without getting "INF". var_dump(1.8e308); will usually show: float(INF) I wrote a tiny function that will iterate in order to find the biggest non-infinite float value. It comes with a config...