rockstardev
rockstardev

Reputation: 13537

Zend2: Set currency format to have a space for the thousand seperator?

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

Answers (1)

Sai Raja
Sai Raja

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

Related Questions