An open API service indexing awesome lists of open source software.

https://github.com/pavstyuk/php_prime_class

A small class for finding a series of prime numbers in a given range from 1 to max.
https://github.com/pavstyuk/php_prime_class

Last synced: 11 months ago
JSON representation

A small class for finding a series of prime numbers in a given range from 1 to max.

Awesome Lists containing this project

README

          

**Small Simple Class on PHP for Generating Fibonacci Series**

```
require_once "class/Prime.php";

$max = 100;
$prime = new Prime($max);
$prime->writeToFile();
```