Hi
I've used Zend_Money to format currency as follow
$currency = new Zend_Currency(array('value' => $money,
'currency' => 'CAN',
'format' => 'fr'));
// output -> 100,00 $
Which display normally 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
// output -> 100,00 €
I would like to know if someone has ever encountered such issue and where i need to look to find the solution
Thanks