Skip to main content

Php prime number program with use of class

Php prime number  program with use of class


<?php


class find_p_number
{
# Function to check single number is Prime or not
static function isPrime($number)
{
# Start temporary number from 2 (1 is not a prime number)
$i = 2;
# 1 is not a prime number
if($number == 1)
return false;
# 2 is the only even prime number
if($number == 2)
return true;
# Check numbers other than 1 and 2
while($i <= sqrt($number))
{
if ($number % $i == 0)
return false;
 
$i++;
}
# If the execution has come to this point, means it is a prime Number :)
return true;
}
# Function to check Prime Numbers between two given numbers
static function betweenTwoNumbers($num1, $num2)
{
$prime_numbers = array();
# Check Prime Numbers between two given numbers
for($num1; $num1<$num2; $num1++)
{
# Check whether the current number is prime or not
if(self::isPrime($num1))
$prime_numbers[] = $num1;
}
# Returns the array of prime numbers between supplied numbers
return array_values(array_unique($prime_numbers));
}
}
 
 
?>


Comments

Popular posts from this blog

FILE UPLOAD IN PHP BY USEING FORM | PHP FILE UPLOADS

FILE UPLOAD IN PHP  BY USEING FORM | PHP FILE UPLOADS INDEX.PHP //PAGE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <form method="post" action="upload.php" enctype="multipart/form-data"> <input type="file" name="posters" /> <input type="submit" value="upload" name="submit" /> </form> </body> </html> upload.php //PAGE <?php if($_FILES) { $name=$_FILES['posters']['name']; $type=$_FILES['posters']['type']; $extension=array('jpeg','jpg','JPEG','JPG','...