Global keyword usage in PHP

silencement
Release: 2023-04-08 11:00:01
forward
3465 people have browsed it

Global keyword usage in PHP

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 values ​​within the function The sum 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 superglobal variable of $GLOBAL.

The role of Global is 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.

The above is the detailed content of Global keyword usage in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:www.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