Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/SecureRandom/int.php
Назад
<?php declare(strict_types=1); namespace Psl\SecureRandom; use Exception as PHPException; use Psl\Math; use Psl\Str; use function is_string; use function random_int; /** * Returns a cryptographically secure random integer in the given range. * * @throws Exception\InsufficientEntropyException If it was not possible to gather sufficient entropy. * @throws Exception\InvalidArgumentException If $min > $max. * * @psalm-external-mutation-free */ function int(int $min = Math\INT64_MIN, int $max = Math\INT64_MAX): int { if ($max < $min) { throw new Exception\InvalidArgumentException(Str\format('Expected $min (%d) to be less than or equal to $max (%d).', $min, $max)); } if ($min === $max) { return $min; } try { return random_int($min, $max); // @codeCoverageIgnoreStart } catch (PHPException $e) { $code = $e->getCode(); if (is_string($code)) { $code = Str\to_int($code) ?? 0; } throw new Exception\InsufficientEntropyException('Unable to gather sufficient entropy.', $code, $e); // @codeCoverageIgnoreEnd } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка