">
<?php$n = 25;function Res(){ $n = 15; echo "$n";}Res();echo "$n";?>
First when the function is called variable n is initialised to 15 so 15 is printed later the global value 25 is printed.
Previous Question Next Question
Your comments will be displayed only after manual approval.