1 2 3 4 5 6 7 8
<?php function is_prime(int $n): bool { for ($i = 2; $i * $i <= $n; $i++) if ($n % $i == 0) return false; return true; }