Unfortunately I could not 100% result. I tried several changes in the configuration. The most we got was £ 600,000. But for me, it would be correct R $ 600,000.00. The currency should be before the value. And with "," (comma) followed by two (00).
I tried changing Apartment.php code example using the link php, example below in bold:
Exemplo: Example:
<?php
$number = 1234567.896;
echo '1: '.number_format($number, 2, ',', '').'<br>';
echo '2: '.number_format($number, 2, '.', '').'<br>';
echo '3: '.number_format($number, 2, ',', '.').'<br>';echo '4: '.number_format($number, 2, '.', ',').'<br>';
echo '5: '.number_format($number, 2, ',', ' ').'<br>';
echo '6: '.number_format($number, 2, ',', "'").'<br>';
echo '7: '.number_format($number, 2, '', '').'<br>';
?>
Resultado: Result:
1: 1234567,90 -> Decimal separado por ,
2: 1234567.90 -> Decimal separado por .
3: 1.234.567,90 -> Moeda Brasil, Alemanha 4: 1,234,567.90 -> Inglês, USA
5: 1 234 567,90 -> França
6: 1'234'567,90 -> Suíça
7: 123456790 -> Sem decimal
But it gave error, and gave up. I am unable to configure my taste. [url]see image
http://meuimovel.webtb.com.br/imag/sepa ... codigo.jpg[/url]
My setup is like the images links.