|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-25 16:16 UTC] jmcastagnetto@php.net
[2002-12-29 17:45 UTC] jmcastagnetto@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 11:00:02 2025 UTC |
OK, here's another function needing docs. string money_format(string format, float value) Convert monetary value(s) to string This function wraps strfmon (the C function). You can get a full description by reading the man page. One difference is that the PHP function converts one number instead of any number of them. Here's a simple example: <? print(money_format("[%^=*#6n]", 1234.567)); ?>