<?php
    //Fibonacci
    function getFib($n)
    {
        return round(pow((sqrt(5)+1)/2, $n) / sqrt(5));
    }

    for($i = 0; $i < 10;$i++){
        echo getFib($i)."<br/>";
    }
    /*
    Uitkomst:
    0
    1
    1
    2
    3
    5
    8
    13
    21
    34
    55
    */
?>