Home  >  Article  >  Backend Development  >  Analysis of PHP variable scope and address reference issues

Analysis of PHP variable scope and address reference issues

WBOY
WBOYOriginal
2016-07-25 08:55:091021browse
  1. function test()
  2. {
  3. static $b=0;//Declare static variables. If declared outside the function, they will not be used inside the function
  4. $b=$b+1;
  5. echo $b;
  6. }
  7. test();//This statement will output the value of $b as 1
  8. test();//This statement will output the value of $b as 2
Copy code

Note :static $b=0 This assignment operation will only be executed when the variable is initialized for the first time. Attachment A: Static members and static methods in a class almost always use the class name or self or parent plus: :xxx when calling. Their scope is the same as this, but their declaration is outside the method. Appendix B: The scope in js is: use var aa=‘xxx’; what is declared outside the function is the global variable (regardless of whether it has the modifier var or not). Local variables are declared using var inside a function, and global variables are declared without var. Appendix C: About PHP references PHP reference: Add &. Reference in php before a variable, function or object is to access the contents of the same variable with different names.

1. Variable reference:

  1. $a="ABC";
  2. $b =&$a;
  3. echo $a;//Output here: ABC
  4. echo $b;//Output here: ABC
  5. $ b="EFG";
  6. echo $a;//The value of $a here becomes EFG, so EFG is output
  7. echo $b;//EFG is output here
Copy code

2. Call by address of function

  1. function test(&$a)
  2. {
  3. $a=$a+100;
  4. } // bbs.it-home.org
  5. $b=1;
  6. echo $b ;//Output 1
  7. test($b); //What $b is passed to the function here is actually the memory address where the variable content of $b is located. The value of $b can be changed by changing the value of $a in the function.
  8. echo "
    ";
  9. echo $b;//Output 101
Copy code

3. Function reference return

  1. function &test()
  2. {
  3. static $b=0;//Declare a static variable
  4. $b=$b+1;
  5. echo $b;
  6. return $b;
  7. }
  8. $a=test();//This statement will output the value of $b as 1
  9. $a=5;
  10. $a=test();//This statement will output the value of $b as 2
  11. $a=&test();//This statement will output the value of $b as 3
  12. $a=5;
  13. $a=test();//This statement will output the value of $b as 6
Copy code

Analysis: What you get using $a=test() is not actually a reference return from the function. Just copy the function's return value to $a without affecting $b. This call is no different from an ordinary call. Php stipulates: $a=&test() method is the reference return of the function. He pointed the memory address of the $b variable and the memory address of the $a variable to the same place. That is equivalent to $a=&$b;

4. Cancel reference

  1. $a = 1;
  2. $b =& $a;
  3. unset ($a);
  4. echo $b;
Copy code

Analysis: Unsetting a reference only cancels the binding between the variable name and the variable's content. It does not mean that the content is destroyed, and its value still exists.

5. Global quote: When you declare a variable using global $var, you actually create a reference to the global variable.

  1. Global $val <=> $var=&$GLOBALS['var'] ;
Copy code

6. Object reference: In the method of the object, the object called by $this is the reference that calls it. Note: The pointing of addresses in PHP is not implemented by the user himself, but through the zend core. PHP references adopt the principle of "write copy", that is, unless a write operation occurs, the variable pointing to the same address or Objects will not be copied. example:

$a = 1; $b =$a;

$a and $b both point to the same memory address, it is not that $a and $b occupy different memories. If you now execute the sentence $a="dsd": the memory data pointed to by $a and $b need to be rewritten, at this time the zend core will automatically judge. Automatically generate a data copy of $a for $b, and re-apply a piece of memory for storage.

That’s all about PHP variable scope and PHP references. I hope it will be helpful to everyone.



Statement:
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