php-general | 2001092
Date: 09/25/01
- Next message: Jon Haworth: "RE: [PHP] Counter"
- Previous message: Sterling Hughes: "Re: [PHP] curl_exec() output and curl_setopt( CURL_CERTIFICATE, $path )"
- In reply to: Christian Dechery: "Re: [PHP] 2 decimal places"
- Next in thread: Meir Kriheli: "Re: [PHP] 2 decimal places"
- Reply: Meir Kriheli: "Re: [PHP] 2 decimal places"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
What if I want to pad a number with zeros in the other direction? I.E:
524 becomes 00524
----- Original Message -----
From: "Christian Dechery" <cdechery <email protected>>
To: "Kurth Bemis" <kurth <email protected>>
Cc: <php-general <email protected>>
Sent: Tuesday, September 25, 2001 9:41 AM
Subject: Re: [PHP] 2 decimal places
> At 22:22 19/09/01 -0400, Kurth Bemis wrote:
> >i'm looking for a php function to add 2 decimal place sto a number. if
> >the number already have one decimal place then one more zero should be
> >added to make it two decimal places....anyone know of a quick way to do
this?
>
> $number=32.5;
>
> echo number_format($number,2);
>
> outputs:
> "32.50"
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> For additional commands, e-mail: php-general-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
>
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Jon Haworth: "RE: [PHP] Counter"
- Previous message: Sterling Hughes: "Re: [PHP] curl_exec() output and curl_setopt( CURL_CERTIFICATE, $path )"
- In reply to: Christian Dechery: "Re: [PHP] 2 decimal places"
- Next in thread: Meir Kriheli: "Re: [PHP] 2 decimal places"
- Reply: Meir Kriheli: "Re: [PHP] 2 decimal places"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

