https://github.com/pavstyuk/php_fibonacci_class
https://github.com/pavstyuk/php_fibonacci_class
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pavstyuk/php_fibonacci_class
- Owner: Pavstyuk
- Created: 2024-12-16T05:30:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-10T15:04:43.000Z (over 1 year ago)
- Last Synced: 2025-05-25T13:48:41.886Z (about 1 year ago)
- Language: PHP
- 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 PHP Class for Generating Fibonacci Series**
```
require_once "class/Fibonacci.php";
$max_length = 100;
$fib = new Fibonacсi($max_length);
$fib->printSeriesCli();
$fib->writeToFile();
```