Skip to content

Instantly share code, notes, and snippets.

@djfm
Last active August 29, 2015 14:11
Show Gist options
  • Save djfm/62842960753ba183e459 to your computer and use it in GitHub Desktop.
Save djfm/62842960753ba183e459 to your computer and use it in GitHub Desktop.
Fibonacci tick
<?php
/**
* This will display the first 10 numbers of the Fibonacci sequence.
* Really.
*/
declare(ticks=1);
$a = 0;
$b = 1;
register_tick_function(function () use (&$a, &$b){
$c = $a + $b;
$a = $b;
$b = $c;
echo "$c\n";
});
echo "$a\n";
;
{}
;;
;{}{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment