Functions:
*
Function Scope
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