I used Zend_Money to format the currency as follows
$currency = new Zend_Currency(array('value' => $money,
'currency' => 'CAN',
'format' => 'fr'));
Which display is usually displayed on my local development system (wamp on windows)
But when I put it online on my testing server (apache on windows (not my choice, and I canβt change it :(), the code output becomes
I would like to know if anyone has ever encountered such a problem and where I need to look for a solution
thank
source
share