Reputation: 13537
When setting the pattern for the currencyFormatter, you can use:
#,##0.###
To get:
1,0000.00
But I want to get:
1 0000.00
How do I alter the format string to get that?
Upvotes: 0
Views: 151
Reputation: 53
Try with the use of 'symbol' attribute to overwrite your own curreny.
echo Zend_Currency->toCurrency(
4000,
array(
'currency' => "USD",
'symbol' => ''
)
);
Upvotes: 1