Analysis of common problems in PHP (II.)

Source: Internet
Author: User

One: unset:

1, if unset() a global variable in the function, only the local variable is destroyed, and the variable in the calling environment will remain called unset() Before the same value, if you want to unset() a global variable in a function, you can use $GLOBALS an array to implement:

2, if unset() A variable passed by reference in the function, only the local variable is destroyed, and the variable in the calling environment will remain called unset() the same value as before.

3. If a static variable is unset() in the function, this static variable will be destroyed inside the function. However, when this function is called again, the static variable is restored to the value before it was last destroyed

4. Addresses are freed only when all variables that point to the value (such as a reference variable pointing to the value) are destroyed

Reference: http://developer.51cto.com/art/200912/168014.htm

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.