Ben büyük bir hiyerarşi ile bir işlevi vardır:
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
}
}
}
}
}
Herkes iç içe kapsamlardan $a
değerini değiştirmek nasıl biliyor mu?