fork(1) download
<?php
function f1()
{
	$first = 10;
	function f2()
	{
		$second = $first + 10;
		return $second;
	}
	$t = f2();
	return $t;
}
var_dump(f1());
Success #stdin #stdout #stderr 0.02s 24448KB
stdin
Standard input is empty
stdout
int(10)
stderr
PHP Notice:  Undefined variable: first in /home/la7rq7/prog.php on line 7