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

https://github.com/pavstyuk/php_fibonacci_class


https://github.com/pavstyuk/php_fibonacci_class

Last synced: 12 months ago
JSON representation

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();
```