Skip to content

Instantly share code, notes, and snippets.

@Majkl578
Forked from Solution/gist:1306541
Created October 22, 2011 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Majkl578/1306559 to your computer and use it in GitHub Desktop.
Save Majkl578/1306559 to your computer and use it in GitHub Desktop.
Price
<?php
function cutPrice($price)
{
return number_format($price, is_float($price) ? 2 : 0, '.', ' ');
}
var_dump(cutPrice(12185418));
var_dump(cutPrice(12185418.4841));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment