You are here: Re: String to Currency « All PHP « IT news, forums, messages
Re: String to Currency

Posted by NC on 12/15/05 01:28

TonyG wrote:
>
> what's the best way to convert a string value to a currency format?
>
> String : 12.5
> Output: $12.50

Try this:

function moneyFormat($number, $currencySymbol = '$',
$decPoint = '.', $thousandsSep = ',', $decimals = 2) {
return $currencySymbol . number_format($number, $decimals,
$decPoint, $thousandsSep);
}

Simple usage example:

echo moneyFormat(1234.5);
// outputs $1,234.50

Slightly more complicated usage examples:

echo moneyFormat(1234.5, 'EUR ', ',', '.');
// outputs EUR 1.234,50

echo "Gasoline price: ",
moneyFormat(2.499, '$', '.', ',', 3),
" per gallon";
// outputs Gasoline price: $2.499 per gallon

Cheers,
NC

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация