7 lines
159 B
PHP
7 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
function format_number($string, $decimal = 2, $symbol = ',', $thousands = ' ') {
|
||
|
return number_format($string, $decimal, $symbol, $thousands);
|
||
|
}
|
||
|
|
||
|
?>
|