Skip to content

Instantly share code, notes, and snippets.

@bencarter78
Created May 19, 2015 21:25
Show Gist options
  • Select an option

  • Save bencarter78/fa1f5d9c0794c5570754 to your computer and use it in GitHub Desktop.

Select an option

Save bencarter78/fa1f5d9c0794c5570754 to your computer and use it in GitHub Desktop.
Returns true if the given number is a prime number
<?php
function isPrime($n) {
$i = 2;
if ($n == 2) {
return true;
}
$sqrtN = sqrt($n);
while ($i <= $sqrtN) {
if ($n % $i == 0) {
return false;
}
$i++;
}
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment