PHP Reference Variable Knowledge detailed

Source: Internet
Author: User
This article mainly introduces the PHP reference variable knowledge detailed, has a certain reference value, now share to everyone, the need for friends can refer to

    • Concept: Referencing in PHP means accessing the same variable content with a different name;

    • Definition: PHP uses ' & ' to define reference variables;

    • When a reference is not used, the variable takes a write-time copy mechanism (COW): A copy of the memory is copied on the write to modify, for example

Define a variable $ A = range (0,1000); Var_dump (Memory_get_usage ()); Print memory usage//define a variable b$b = $a; At this point, $b and $ A point to the same memory space Var_dump (Memory_get_usage ()), and//When a or B is written, a block of memory is copied to modify $ A = range (0,1000); Var_dump (memory_get_ Usage ());

Run Result: Memory usage is not much different during first and second printing, and the third time has changed significantly, which indicates that memory has replicated when a writes.


    • The variable will point to the same memory space at the time of the reference, and will not change when the write operation occurs

Define a variable $ A = range (0,1000); Var_dump (Memory_get_usage ()); Print memory usage//define a variable b$b = & $a; Assigning a space to B,a and B to the same space Var_dump (Memory_get_usage ());//When a or B write occurs, the memory does not replicate $ A = range (0,1000); Var_dump (memory_get_ Usage ());

Run Result: Memory has never changed significantly

Validation through the Zval variable container

Print $ A = range (0,3) through the Zval variable container, xdebug_debug_zval (' a '),//print the number of variables that point to memory space, and whether it is referenced $c =& $a; Xdebug_debug_zval (' a '); $c = Range (0,3); Xdebug_debug_zval (' a ');

Operation Result:

When writing to C, there are still 2 variables pointing to memory, no write-time replication occurs



    • Unset only cancels the reference and does not destroy the space

    • In PHP, the object itself is a reference value, without the use of reference symbols

Class person{public    $name  = "Zhangsan";} $p 1 = new person (), Xdebug_debug_zval (' P1 '), $p 2 = $p 1;xdebug_debug_zval (' P1 '); $p 2->name = "Lesi"; Xdebug_debug_zval ( ' P1 ');


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.