Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Math/div.php
Назад
<?php declare(strict_types=1); namespace Psl\Math; use ArithmeticError; use DivisionByZeroError; use Psl\Str; use function intdiv; /** * Returns the result of integer division of the given numerator by the given denominator. * * @pure * * @throws Exception\ArithmeticException If the $numerator is Math\INT64_MIN and the $denominator is -1. * @throws Exception\DivisionByZeroException If the $denominator is 0. */ function div(int $numerator, int $denominator): int { try { return intdiv($numerator, $denominator); } catch (DivisionByZeroError $error) { throw new Exception\DivisionByZeroException( Str\format('%s.', $error->getMessage()), $error->getCode(), $error ); } catch (ArithmeticError $error) { throw new Exception\ArithmeticException( 'Division of Math\INT64_MIN by -1 is not an integer.', $error->getCode(), $error ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка