Home Backend Development PHP Problem Little-known function variable scope (implementation steps)

Little-known function variable scope (implementation steps)

Jun 03, 2021 pm 04:30 PM

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;

<?php
     /****** 局部变量*/
     function demo(){
         $str = &#39;找个富二代,可以少奋斗好几十年。&#39;;
     }
     demo ();
     echo $str;
   
?>
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:

<?php
     /****** 局部变量*/
     function demo($str1 = &#39;论如何成为一个有钱人&#39;){
         $str = &#39;找个富二代,可以少奋斗好几十年。&#39;;
     }
     demo ();
     echo $str;
     echo $str1;
   
?>
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 our formal parameter is also used inside the function. The code demonstration is as follows:

<?php
     /****** 局部变量*/
     function demo($str1 = &#39;论如何成为一个有钱人&#39;){
         echo $str1;
         $str = &#39;找个富二代,可以少奋斗好几十年。&#39;;
     }
     demo ();
     echo $str;
     echo $str1;
   
?>
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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1654
14
PHP Tutorial
1252
29
C# Tutorial
1225
24