[PHP] Floats and avoid exponential notation - How?

2008-08-14 Thread k bah
Hi, I'm working with floats because I have a big number to identify users, and the only operation I make with this number is to add something less than 100 with 100 (one and ten zeros). Besides that I just need to use the number to search (= comparison). I never need the

[PHP] Floats and avoid exponential notation - How?

2008-07-17 Thread k bah
Hi, From http://www.php.net/manual/en/language.types.float.php (second comment in that page, from kjohnson at zootweb dot com): PHP switches from the standard decimal notation to exponential notation for certain special floats. You can see a partial list of such special values with this:

Re: [PHP] Floats and avoid exponential notation - How?

2008-07-17 Thread Andrew Ballard
On Thu, Jul 17, 2008 at 7:23 AM, k bah [EMAIL PROTECTED] wrote: Hi, From http://www.php.net/manual/en/language.types.float.php (second comment in that page, from kjohnson at zootweb dot com): PHP switches from the standard decimal notation to exponential notation for certain special

Re: [PHP] Floats and avoid exponential notation - How?

2008-07-17 Thread Kirk . Johnson
k bah [EMAIL PROTECTED] wrote on 07/17/2008 05:23:40 AM: Hi, From http://www.php.net/manual/en/language.types.float.php (second comment in that page, from kjohnson at zootweb dot com): PHP switches from the standard decimal notation to exponential notation for certain special