PHP unset global variable usage

Source: Internet
Author: User

In PHP, the statement for releasing variables is called unset (since PHP4, unset is no longer a function, but a statement). A problem occurred when unset was used a few days ago, the unset problem is summarized as follows. If you have carefully read the PHP manual, there is no need to read it again. This article is intended for students who have no intention of reading the manual.

The first thing to emphasize is that the PHP unset global variable is no longer a function in PHP. Since it is not a function, no return value is returned, therefore, the unset return value cannot be used for determination.

Second, in the function, PHP unset global variables can only destroy local variables, and cannot destroy global variables. Let's look at an example in the following manual.

 
 
  1. < ?PHP  
  2. function destroy_foo() {  
  3. global $foo;  
  4. unset($foo);  
  5. }  
  6. $foo = ‘bar’;  
  7. destroy_foo();  
  8. echo $foo;  
  9. ?> 

The returned result is

Bar

Why? The reason is that PHP unset global variables can only destroy local variables in the function. What should I do if I need to destroy global variables in the program? It is also very simple. It is implemented using the $ GLOBALS array. See the following example:

 
 
  1. < ?PHP  
  2. function foo() {  
  3. unset($GLOBALS['bar']);  
  4. }  
  5. $bar = “something”;  
  6. foo();  
  7. var_dump($bar);  
  8. ?> 


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.