Answers for "make price in comma php"

PHP
4

php rtrim comma

rtrim($my_string, ',');
Posted by: Guest on November-12-2020
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

Browse Popular Code Answers by Language