Explanation of Global keyword reference of Global variables in PHP _ PHP Tutorial

Source: Internet
Author: User
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...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.