Advertisement
vanchelo

price_format

Oct 25th, 2012
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. <?php
  2. $in = !empty($input) ? $input : 0;
  3. return number_format($in, (floor($in) === $in ? 0 : 2 ), ',', ' ');
  4. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement