<?phpstatic $n = 5;function calc(){ echo $n; $n++;}calc();calc();calc();?>
Since variable n is not defined inside the function fun(), nothing will be printed.
Previous Question Next Question
Your comments will be displayed only after manual approval.