Answers for "thousand_format php"

PHP
0

format money with commas in php

<?php
function CurrencyFormat($number)
{
   $decimalplaces = 2;
   $decimalcharacter = '.';
   $thousandseparater = ',';
   return number_format($number,$decimalplaces,$decimalcharacter,$thousandseparater);
}
?>
Posted by: Guest on December-04-2020
0

number format without comma php

number_format(1000.5, 2, '.', '');
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language