Skip to content

Instantly share code, notes, and snippets.

@eniolopes
Created December 17, 2010 14:06
Show Gist options
  • Save eniolopes/744976 to your computer and use it in GitHub Desktop.
Save eniolopes/744976 to your computer and use it in GitHub Desktop.
function getValor($preco){
$valor = explode("." , $preco);
$valor = implode($valor);
$valor = ereg_replace(",",".",$valor);
return $valor;
}
function getValor($preco){
$valor = explode("." , $preco);
$valor = implode(",",$valor);
return $valor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment