1
0
Fork 0
template/functions/format-number.php
2024-04-25 21:55:08 +02:00

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);
}
?>