Question:function my_function(){ static $count=1; $count++; echo $count; echo "<br/>"; } my_function(); my_function(); my_function(); What will be the correct out of the above static syntax?
function my_function(){ static $count=1; $count++; echo $count; echo "<br/>"; } my_function(); my_function(); my_function();
A 2 3 4 B 1 2 3 C 1 1 1 D 2 2 2
+ AnswerA
+ Report