Problem Statement
Describe the different variable scopes in PHP.
Explanation
PHP has four main scopes: local, global, static, and parameter. Local variables exist inside functions. Global variables are declared outside functions and accessed with the global keyword. Static variables keep their value between function calls. Parameters are variables passed to functions.
