misuzu/src/integer.php

5 lines
103 B
PHP

<?php
function clamp($num, int $min, int $max): int
{
return max($min, min($max, intval($num)));
}