Файловый менеджер - Редактировать - /home/kckglobal/public_html/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); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка