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.
- Host: GitHub
- URL: https://github.com/pavstyuk/php_prime_class
- Owner: Pavstyuk
- Created: 2024-12-16T05:48:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-19T03:44:28.000Z (over 1 year ago)
- Last Synced: 2025-05-25T13:48:41.889Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```