Function Scope

suggest change

Variables inside functions is inside a local scope like this

$number = 5
function foo(){
    $number = 10
    return $number
}

foo(); //Will print 10 because text defined inside function is a local variable

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents