<?php $max = 2147483647; $primesFound = 0; $probablePrimes = 0; for ($x = 1; $x <= $max; $x++) { $primeStatus = gmp_prob_prime($x); if ($primeStatus == 1) { $probablePrimes++; } else if ($primeStatus == 2) { $primesFound++; } } echo "Total primes found: " . $primesFound . " between 1 and " . $max . ". Probable primes in this interval: " . $probablePrimes;?>Based on that the following results were obtained:1 - 100000 - certain primes found: 9592, probable: 01 - 1000000 - certain primes found: 78498, probable: 01 - 10000000 - certain primes found: 78498, probable: 5860811 - 100000000 - certain primes found: 78498, probable: 56829571 - 1000000000 - certain primes found: 78498, probable: 507690361 - 2147483647 - certain primes found: 78498, probable: 105019067