Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Math/sqrt.php
Назад
<?php declare(strict_types=1); namespace Psl\Math; use function sqrt as php_sqrt; /** * Returns the square root of the given number. * * @pure * * @throws Exception\InvalidArgumentException If $number is negative. */ function sqrt(float $number): float { if ($number < 0) { throw new Exception\InvalidArgumentException('$number must be a non-negative number.'); } return php_sqrt($number); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка