I would, but I only want to remove the decimals if they are 0.  I want to
see actual decimal values that exist.

Daniel

----- Original Message -----
From: "Derick Rethans" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, January 16, 2001 12:19 PM
Subject: Re: [PHP-DEV] PHP 4.0 Bug #8741: preg functions interpret { as part
of variable interpolation


> On 16 Jan 2001 [EMAIL PROTECTED] wrote:
>
> > From:             [EMAIL PROTECTED]
> > Operating system: Linux 2.x, Redhat 6.2
> > PHP version:      4.0.3pl1
> > PHP Bug Type:     PCRE related
> > Bug description:  preg functions interpret { as part of variable
interpolation
> >
> > The following code does not work properly
> >
> > $number = "999.00";
> > $precision = 2;
> > echo preg_replace("/\.0{$precision}/", "", $number);
> >
> > it echos 999.00
>
> I know it has nothing to do with the bug, but why don't you just use this:
> echo floor ($number);
>
> Derick Rethans
>
> ---------------------------------------------------------------------
>       PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
> ---------------------------------------------------------------------
>
>
>


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to