Scope in PHP

不言
Release: 2023-04-02 14:58:01
Original
3550 people have browsed it

This article mainly introduces the scope of PHP, which has certain reference value. Now I share it with you. Friends in need can refer to the areas where variables can be accessed.


Scope in js:
Global scope: can be used anywhere (outside and inside the function)
Local scope: can only be used inside the function

PHP also has Two scopes: global scope and local scope
Global scope: can only be used outside the function
Local scope: can only be used inside the function

Global scope refers to For variables defined outside the function, the local scope refers to the variables defined inside the function
The outside cannot be accessed from the inside
Scope in PHP
The inside cannot be accessed from the outside
Scope in PHP
It can be accessed inside the function Use $GLOBALS['global scope variables'] in the local scope to access the global scope
Scope in PHP
Note: $GLOBALS refers to the variable that refers to the global scope itself

PHP also A keyword is provided: global
global is to copy the address of the variable in the global scope, then create a new variable name with the same name in the local scope, and assign the external address to the local variable.
Syntax: global variable name;
Variable name = value;
Scope in PHP

The area where the variable can be accessed.
Scope in js:
Global scope: can be used anywhere (outside and inside the function)
Local scope: can only be used inside the function

PHP also has Two scopes: global scope and local scope
Global scope: can only be used outside the function
Local scope: can only be used inside the function

Global scope refers to For variables defined outside the function, the local scope refers to the variables defined inside the function
The outside cannot be accessed from the inside
Scope in PHP
The inside cannot be accessed from the outside
Scope in PHP
It can be accessed inside the function Use $GLOBALS['global scope variables'] in the local scope to access the global scope
Scope in PHP
Note: $GLOBALS refers to the variable that refers to the global scope itself

PHP also A keyword is provided: global
global is to copy the address of the variable in the global scope, then create a new variable name with the same name in the local scope, and assign the external address to the local variable.
Syntax: global variable name;
Variable name = value;
Scope in PHP

The above is the entire content of this article. I hope it will be helpful to everyone's learning. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

PHP source code php-beast encryption

Introduction to PHP iterator generator

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

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