Skip to content

Instantly share code, notes, and snippets.

@nachoaguirre
Created March 12, 2021 03:23
Show Gist options
  • Save nachoaguirre/15a8b5d457236694575ca4bf8afff270 to your computer and use it in GitHub Desktop.
Save nachoaguirre/15a8b5d457236694575ca4bf8afff270 to your computer and use it in GitHub Desktop.
common_helpers.php
function fixPrecio($number, $showsign=true){
$showsign = !$showsign ? "" : "$";
return $showsign.number_format($number, 0, '.', '.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment