I need to simulate a ∞ in PHP.

So that min(∞,$number) is always $number.

link|improve this question

49% accept rate
16  
just remove the min(∞, and ) parts ;-) – Michael Krelin - hacker Dec 14 '09 at 11:31
1  
$infinity = 1 / 0; >____< – Lukman Dec 14 '09 at 14:29
feedback

7 Answers

I suppose that, for integers, you could use PHP_INT_MAX , the following code :

var_dump(PHP_INT_MAX);

Gives this output, on my machine :

int 2147483647


But you have to be careful ; see Integer overflow (quoting) :

If PHP encounters a number beyond the bounds of the integer type, it will be interpreted as a float instead. Also, an operation which results in a number beyond the bounds of the integer type will return a float instead.

And, from the Floating point numbers documentation page :

The size of a float is platform-dependent, although a maximum of ~1.8e308 with a precision of roughly 14 decimal digits is a common value (the 64 bit IEEE format).

Considering the integer overflow, and depending on your case, using this kind of value might be a better (?) solution...

link|improve this answer
What if $number if larger than 2147483647? – user198729 Dec 14 '09 at 11:35
It will be interpreted as a float, and not an integer (see the portion I quoted about "Integer overflow") – Pascal MARTIN Dec 14 '09 at 11:43
feedback

I suppose, assuming this is an integer, you could use PHP_INT_MAX constant.

link|improve this answer
feedback

Use the constant PHP_INT_MAX.

http://php.net/manual/en/language.types.integer.php

link|improve this answer
feedback

You could potentially use the PHP_INT_MAX constant (click for PHP manual docs).

However, you may want to think about whether you really need to use it - it seems like a bit of an odd request.

link|improve this answer
feedback

min($number, $number + 1) ??

link|improve this answer
1  
with int overflow $number + 1 could be < $number – jk. Dec 14 '09 at 13:19
feedback

In Perl you can use

$INF = 9**9E9;

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 $INF:

$N < $INF

is true for any "normal" number $N.

Maybe you use it in PHP too?

link|improve this answer
feedback

min($number,$number) is always $number (also true for max of course)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.