<?php
function f1()
{
	$first = 10;
	function f2()
	{
		$second = $first + 10;
		return $second;
	}
	$t = f2();
	return $t;
}
var_dump(f1());