Re: [PHP] How to get a double to show the .00 in a hole number From: Andrey Hristov (ahristov <email protected>)
Date: 08/31/01

Try number_format()

if you have int than ($int_var*100)/100 or (double)$int_var

number_format((double)$int_var,...)

Andrey Hristov
IcyGEN Corporation
http://www.icygen.com
BALANCED SOLUTIONS

----- Original Message -----
From: "Robert J Collins" <robertjcollins <email protected>>
To: <php-general <email protected>>
Sent: Friday, August 31, 2001 10:50 PM
Subject: [PHP] How to get a double to show the .00 in a hole number

> I am trying to get a double data type to display the .00 in a "hole" dollar
> amount (i.e. 432.00 not 432 or $432.00 not $432).
>
> Can anyone tell me how to do this?
>
> Thanks,
>
> Robert J Collins
>
>
>
> --
> 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>