<?php
 
$i=0;
while (true) {
	$i++;
	$f = str_repeat('l', $i);
	$c = "function $f() { echo '$i\n'; }\n $f();";
	eval($c);
}
