Detailed examples of PHP global keyword

coldplay.xixi
Release: 2023-04-08 21:44:02
forward
1727 people have browsed it

Detailed examples of PHP global keyword

PHP global keyword

The global keyword is used to access global variables within a function.

Example 1

$x=5;
$y=10;
  
function myTest() {  
    global $x,$y;//通过global来声明$x,$y,相当于传递参数
    $y=$x+$y;
}
  
myTest();
echo $y;
Copy after login

Output

// 输出 15
Copy after login

Indicates that the values ​​of $x and $y defined outside the function have been referenced, and The sum within the function is assigned to $y, and the sum calculated inside the function can also be obtained outside the function

Global variables: variables outside the function, variables inside the function, and the super global variable of $GLOBAL.

Global is used to define global variables, but this global variable does not apply to the entire website, but to the current page, including all files in include or require.

But global variables defined within the function body can be used within the function body, while global variables defined outside the function body cannot be used within the function body. See the example below for details.

Note:

The reason is that you cannot assign a value to a variable while declaring it with global.

Define global variables within the function body, which can be used within the function body.

Recommended tutorial: "php from entry to proficiency"

The above is the detailed content of Detailed examples of PHP global keyword. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:liqingbo.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!