Hi,

        From php.net/sprintf:

<?php
$money1 = 68.75;
$money2 = 54.35;
$money = $money1 + $money2;
// echo $money will output "123.1";
$formatted = sprintf("%01.2f", $money);
// echo $formatted will output "123.10"
?>

I think you'd have to format the . and , a bit differently, but that should
be a start.

-Dan Joseph

> -----Original Message-----
> From: Lukáš Moravec - PTV Servis [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 20, 2004 2:10 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Money format
> 
> Hi to all,
> is there any function wich can format a "double" or "string" into "money
> format".for example: 1526789,99 to 1.526.789,99 or something like that.?
> Regards Lukas

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to