4 lines
103 B
PHP
4 lines
103 B
PHP
<?php
|
|
function clamp($num, int $min, int $max): int {
|
|
return max($min, min($max, intval($num)));
|
|
}
|