-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrimeStress.php
50 lines (43 loc) · 1.07 KB
/
PrimeStress.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Created by Daniel Mellum <[email protected]>
* Date: 9/7/2018
* Time: 10:53 PM
*/
//Lets find some prime numbers.
for ($i = 1; $i <= 1000000; $i++) {
if (isPrime($i)) {
$primes[] = $i;
}
}
echo "Found ".count($primes)." prime numbers! \n";
/**
* used for stress test.
*
* https://stackoverflow.com/a/16763365/4824540
*/
function isPrime($num) {
if($num == 1)
return false;
//2 is prime (the only even number that is prime)
if($num == 2)
return true;
/**
* if the number is divisible by two, then it's not prime and it's no longer
* needed to check other even numbers
*/
if($num % 2 == 0) {
return false;
}
/**
* Checks the odd numbers. If any of them is a factor, then it returns false.
* The sqrt can be an aproximation, hence just for the sake of
* security, one rounds it to the next highest integer value.
*/
$ceil = ceil(sqrt($num));
for($i = 3; $i <= $ceil; $i = $i + 2) {
if($num % $i == 0)
return false;
}
return true;
}