I need to simulate a ∞ in PHP.
So that min(∞,$number) is always $number.
|
I need to simulate a ∞ in PHP. So that
| |||
|
feedback
|
|
I suppose that, for integers, you could use
Gives this output, on my machine :
And, from the Floating point numbers documentation page :
Considering the integer overflow, and depending on your case, using this kind of value might be a better (?) solution... | |||||
feedback
|
|
I suppose, assuming this is an integer, you could use PHP_INT_MAX constant. | |||
|
feedback
|
|
Use the constant | |||
|
feedback
|
|
You could potentially use the However, you may want to think about whether you really need to use it - it seems like a bit of an odd request. | |||
|
feedback
|
|
min($number, $number + 1) ?? | |||||
feedback
|
|
In Perl you can use
which is larger than any value you can store in IEEE floating point numbers. And that really works as intended: any non-infinite number will be smaller than
is true for any "normal" number Maybe you use it in PHP too? | |||
|
feedback
|
min(∞,and)parts ;-) – Michael Krelin - hacker Dec 14 '09 at 11:31$infinity = 1 / 0;>____< – Lukman Dec 14 '09 at 14:29