Re: [PHP] Re: Test for whole number.

2002-04-07 Thread Miguel Cruz
On Mon, 8 Apr 2002, Tom Rogers wrote: > At 09:16 AM 8/04/2002, Charlie Killian wrote: >> I'd like to condense the function below into one line. >> >> function isOneBitSet($n) >> { >>$x = log($n)/log(2); >>return ($x == intval($x)); >> } >> >> AND I don't want to do this: >> return (log($n)

Re: [PHP] Re: Test for whole number.

2002-04-07 Thread Tom Rogers
Hi Not sure if this is the best way to do it: function isOneBitSet($n) { return !ereg("\.",strval(log($n)/log(2))); } Tom At 09:16 AM 8/04/2002, Charlie Killian wrote: >That post was incomprehensible. Here it is revised: > >I'd like to condense the function below into one line. > >func

[PHP] Re: Test for whole number.

2002-04-07 Thread Charlie Killian
That post was incomprehensible. Here it is revised: I'd like to condense the function below into one line. function isOneBitSet($n) { $x = log($n)/log(2); return ($x == intval($x)); } AND I don't want to do this: return (log($n)/log(2) == intval(log($n)/log(2))); So, is there a way to chec