<?php

function f1(){
	$x = 10;
	return function() use ($x){
		$y = 12;
		return $x + $y;
	};
}
$temp = f1();
echo $temp();