Strings Php

You know those stupid little things you come accross after years in the profession, that make
you say "Golly, if I'd just known that 3 or 4 years ago, it would have saved a ton of work!"
This is one of them.
what is the easiest way to express a formatted dollar amount?

Here is a more robust function:
{
//slam it!
$amount=doubleval($amount);
if ($amount>=0)
echo(sprintf("\$ %.2f",$amount);
else
if ($style==0)
echo(sprintf("-\$ %.2f",-$amount);
else
echo("".sprintf("\$ %.2f",-$amount)."");
}
Example :

$amount=1.2345;
echo("the value $amount expressed in dollars is ".dispdollars($amount).".");
?>