I was having a look at all of PHP's math functions and noticed there's an is_infinite() function that returns wether or not the supplied number is infinite. I'm curious wether there happens to be some widely used application for this in everyday web development outside of the scientifical field.

I'm sorry if this is too much of a hypothetical question but I reckon it could be interesting to know if there was.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

in this case 'infinite' means "too big to fit into an float". So if you are doing any sort of calculations and you are storing them in floats, you might want to check if they are getting too large.

In web development you might need it if you are counting something (scores for a game) and you want to be sure it doesn't overflow.

Or maybe you have a userinput they can use to calculate certain things, and you want to be able to see "answer too large" instead of just giving a strange result.

link|improve this answer
From manual: ".., like the result of log(0) or any value too big to fit into a float on this platform". It has nothing to do with integers. – binaryLV Apr 7 '11 at 7:23
My bad! I read that, and then forgot it like a goldfish. I'll fix :D – Nanne Apr 7 '11 at 7:29
I like the idea about "answer too large", +1. – binaryLV Apr 7 '11 at 7:38
This is the kind of answer I was looking for. Knowing PHP considers any value too big for a float to be 'infinite' would be useful in the scenarios you described. Thanks. – Parusa Apr 7 '11 at 11:31
1  
@binaryLV, Seeing as there haven't been any additional answers I will do so now. Shouldn't be too hasty to accept answers or it might discourage people with an even better answer from responding. – Parusa Apr 8 '11 at 7:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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