Copyright © tutorialspoint.com
Scope can be defined as the range of availability a variable has to the program in which it is declared. PHP variables can be one of four scope types:
Local variables
Function parameters
Global variables
Static variables.
A variable declared in a function is considered local; that is, it can be referenced solely in that function. Any assignment outside of that function will be considered to be an entirely different variable from the one contained in the function:
<? $x = 4; function assignx () { $x = 0; print "\$x inside function is $x. |
This will produce following result.
$x inside function is 0. $x outside of function is 4. |
Copyright © tutorialspoint.com