I have a function with a big hierarchy:
function func(){
$a= 0; // Here the variable is 0
while(...){
echo $a; // gives me always 0
for(...){
if(...){
if(...){
$num = func3();
$a = $num; // this $a does not corrospond to $a in the beginning
}
}
}
}
}
Does anyone know how I can change the value of $a from the nested scopes?

$adeclared withinfunc()? If so, that's crazy. I'd really value an answer that explained why PHP does things like that. Seems really, really odd to me. – Dominic Rodger Sep 7 at 17:59