Little-known function variable scope (implementation steps)

慕斯
Release: 2023-03-10 10:50:02
Original
2106 people have browsed it

The last article introduced you to "Two kinds of parameters you must fully master in PHP (with examples) Selection". This article continues to introduce to you the variable scope of the function (that is, function-related The scope of the variable) Now let's go and take a look! ! !

Little-known function variable scope (implementation steps)

Local variables:

  • In a function, the defined variables are local variables and their scope Only the content of the function;

  • Formal parameters are also variables inside the function and local invariants;

Copy after login

The code demonstration results are as follows:

Little-known function variable scope (implementation steps)

In local variables, we define a function, and then declare a variable inside the function. If we can output the variable of this function outside the function, according to the code demonstration, We can get that the result shows that there is no output and this variable is not defined, so we can conclude that the variable we define inside the function is what we call a local variable. (In other words, the variables inside the function will be destroyed once they are executed).

Suppose we define a $str in demo() and then output $str1 externally. Can we output the contents of the defined variable?

The code demonstration is as follows:

Copy after login

The code demonstration results are as follows:

Little-known function variable scope (implementation steps)

We can know from the code demonstration that the operation is still the same is wrong, it still means that $str1 has no defined variable.

So we can also conclude that ourformal parameter is also used inside the function. The code demonstration is as follows:

Copy after login

The code demonstration result is as follows:

Little-known function variable scope (implementation steps)

Recommended study: "PHP Video Tutorial"

The above is the detailed content of Little-known function variable scope (implementation steps). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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