Explanation of Global keyword reference in PHP Global variables. This article will give you a brief introduction to the reference to the Global keyword of the PHP Global variable. although the comments are short compared with the articles, the principles are quite clear, in addition, this article briefly introduces the reference to the Global keyword of the Global variable in PHP. although the comments are short compared with the articles, the principles are quite clear, it is also easy to understand, especially for those who have some language basics. Don't close the customs. start with the question:
$ GLOBALS reference to the PHP manual:
Global variable: $ GLOBALS
Note: $ GLOBALS is applicable to PHP 3.0.0 and later versions.
An array composed of all defined global variables. The variable name is the index of the array.
This is a "superglobal", or it can be described as an automatic global variable.
That is to say, $ var1 and $ GLOBALS ['var1'] in the above code refer to the same variable, rather than two different variables!
Examples of global variables
The code is as follows: |
|
$ Pangbu = "pangbu "; Function demo (){ Global $ pangbu; Echo $ pangbu; } Demo (); ?> |
Explanation
In fact, global $ pangbu; is short for $ pangbu = & $ _ GLOBAL ['pangbu,
$ Pangbu is a reference of $ _ GLOBAL ['pangbu ']. As for how to use the reference, $ pangbu is used.
Some of your own notes
I have never understood the usage of global before. although I can use it, I have been confused in Zookeeper. now I finally understand it.
.
For more information about Global applications, see the following php case:
The code is as follows: |
|
$ Url = "www. bKjia. c0m "; Function get_url (){ Echo "The blog is". $ url; // $ url is not obtained here, because it is just an undefined local variable. } Get_url (); ?>
|
The above example will report a notice error!
The code is as follows: |
|
$ Url = "www. bKjia. c0m "; Function get_url (){ Global $ url; Echo "The blog url is". $ url; } Get_url (); ?>
|
The above usage is correct. after the global variable is declared in the function, all referenced variables of any variable will point to the global variable!
It is also worth mentioning that the global array $ GLOBALS [] is rewritten as follows in the above example:
The code is as follows: |
|
$ Url = "www. bKjia. c0m "; Function get_url (){ Echo "The blog url is". $ GLOBALS ['URL']; } Get_url (); ?>
|
Note that global declared variables cannot be copied, such as global $ url = "www.hzhuti.com". This is an error.
Introduction to the Global keyword reference of the Global variable of explain. Although the comment is short compared with the article, the principle is very clear and simple...