InterviewSolution
| 1. |
What Is The Scope Of A Variable Defined Outside A Function? |
|
Answer» A VARIABLE defined OUTSIDE any functions in main script body is called global variable. However, a global variable is not really accessible globally any in the script. The scope of global variable is LIMITED to all statements outside any functions. So you can not access any global VARIABLES inside a function. Here is a PHP script on the scope of global variables: A variable defined outside any functions in main script body is called global variable. However, a global variable is not really accessible globally any in the script. The scope of global variable is limited to all statements outside any functions. So you can not access any global variables inside a function. Here is a PHP script on the scope of global variables: |
|