Multiple choice technology web technology

Identify the variable scope that is not supported by PHP?

  1. Local variables

  2. Function parameters

  3. Hidden variables

  4. Global variables

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PHP supports local variables (function-scoped), global variables (accessible with global keyword or $GLOBALS), and function parameters. 'Hidden variables' is not a recognized scope type in PHP - the language only has local, global, static, and function parameter scopes.