Приглашаем посетить
Набоков (nabokov-lit.ru)

Section 5.8.  Variable Scope

Previous
Table of Contents
Next

5.8. Variable Scope

Each variable has a life span in which it exists, known as its scope . It is technically possible for a PHP script to have several variables called $a in existence at one point in time; however, there can only be one active $a at any one time.

Any variables not set inside a function or an object are considered globalthat is, they are accessible from anywhere else in the script, except inside another function or an object. We'll be looking at function and object scope later on, but for now, it is necessary only to understand that it is possible to have multiple variables of the same name.


Previous
Table of Contents
Next