|
Posted by rynTAU on 02/21/07 18:57
Thanks, I knew it was something so easy that I couldn't find anything
about it online. :)
On Feb 21, 10:53 am, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> rynTAU wrote:
> > This is an easy question, I'm sure but I can't seem to figure it
> > out.
>
> > I'm trying to use the number_format() function to remove all decimal
> > places from a number.
>
> > $num = number_format($num, 0, '.', '');
>
> > So if I have 23.34567 I want 23, and 45.8789 will return with 45.
> > The problem is that the this function rounds the number off. so that
> > 45.8789 returns 46 instead of 45.
>
> > Is there another function? What should I be using.
>
> > Thanks for your help.
>
> $num = int($num);
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck...@attglobal.net
> ==================
Navigation:
[Reply to this message]
|