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