PDA - personal digital assistant

Visualizza versione completa : fmt2dec



Admin
21/06/2004, 21:26
/*
Composes and returns a formatted number with 2 fixed decimals:
0.00
*/
function fmt2dec($var)
{
return sprintf("%01.2f", $var);
}