fork download
<?php

function f1(){
	$x = 10;
	return function() use ($x){
		$y = 12;
		return $x + $y;
	};
}
$temp = f1();
echo $temp();
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
22