i\'m confused about the php variable scope. such as:
while(true){ $var = \"yes , it is a test!\"; } printf($var)
the $var
$var
while is not a function. scope of variable refers to variable inside functions and classes
while
functions
classes