Phpunset () destroy one or more variables _ PHP Tutorial

Source: Internet
Author: User
Phpunset () destroys one or more variables. The unset function is a built-in function for php to destroy variables. we have introduced how to use unset to destroy static variables and global variables. at the same time, we can destroy array variables, the unset function is a built-in function for destroying variables in php. we introduce how to use unset to destroy static variables and global variables, and how to destroy array variables at the same time, let's look at the instance.

Example 1. unset () example

The code is as follows:

// Destroy a single variable
Unset ($ foo );

// Destroy a single array element
Unset ($ bar ['quux ']);

// Destroy more than one variable
Unset ($ foo1, $ foo2, $ foo3 );
?>

The action of unset () in a function varies depending on the type of the variable to be destroyed.

If unset () is a global variable in the function, only the local variable is destroyed, and the variables in the call environment will keep the same value before the call of unset.

The code is as follows:

Function destroy_foo (){
Global $ foo;
Unset ($ foo );
}

$ Foo = 'bar ';
Destroy_foo ();
Echo $ foo;
?>

The above example will output:

Bar

If unset () is a variable passed by reference in the function, only the local variable is destroyed, and the variables in the call environment will keep the same value before the call of unset.

The code is as follows:

Function foo (& $ bar ){
Unset ($ bar );
$ Bar = "blah ";
}

$ Bar = 'something ';
Echo "$ barn ";

Foo ($ bar );
Echo "$ barn ";
?>
The above example will output:

Something
Something

Unset () static variable
Strictly speaking, the use of unset () to destroy static variables only disconnects the reference between the variable name and the variable value.

Example:

The code is as follows:

Function foo (){
Static $ B;
$ A ++;
$ B ++;
Echo "$ a --- $ bn ";
Unset ($ a, $ B );
Var_dump ($ );
Var_dump ($ B );
Echo "###################### n ";
}

Foo ();
Foo ();
Foo ();
?>
Run this example and output:

1---1
NULL
NULL
#######################
1---2
NULL
NULL
#######################
1---3
NULL
NULL
#######################

Unset () global variable
Like the unset () static variable, if unset () is a global variable in the function, only the local variable is destroyed, and the variable in the call environment will keep calling unset () the same value.

Try to compare the following two examples:

The code is as follows:

Function destroy_foo (){
Global $ foo;
Unset ($ foo );
}

$ Foo = 'bar ';
Destroy_foo ();
Echo $ foo;
?>

Function destroy_foo (){
Global $ foo;
Unset ($ GLOBALS ['foo']);
}

$ Foo = 'bar ';
Destroy_foo ();
Echo $ foo;
?>


The first example will output bar, while the second example will not have any output.

...

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.