PHP | unset() Function
The unset() function is an inbuilt function in PHP which is used to unset a specified variable. The behavior of this function depends on different things. If the function is called from inside of any user defined function then it unsets the value associated with the variables inside it, leaving the value which is initialized outside it.
It means that this function unsets only local variable. If we want to unset the global variable inside the function then we have to use $GLOBALS array to do so.
Syntax
unset($variable)
Parameter
- $variable: This parameter is required, it is the variable which is needed to be unset
Return Value: This function does not returns any value.
Below programs illustrate the unset() function in PHP:
Program 1:
<?php $var = "hello"; // No change would be reflected outside function unset_value() { unset($var); } unset_value(); echo $var; ?> |
Outside:
hello
Program 2:
<?php $var = "hello"; // Change would be reflected outside the function function unset_value() { unset($GLOBALS['var']); } unset_value(); echo $var; ?> |
Output:
No Output
Program 3:
<?php // user-defined function function unset_value() { static $var = 0; $var++; echo "Before unset:".$var." "; unset($var); // This will create a new variable with // existing name $var = 5; echo "After unset:".$var."\n"; } unset_value(); unset_value(); unset_value(); unset_value(); ?> |
Output:
Before unset:1 After unset:5 Before unset:2 After unset:5 Before unset:3 After unset:5 Before unset:4 After unset:5
Note: If a variable is declared static and if it is unset inside the function then, the affect will be in the rest of context of a function only. Above calls outside the function will restore the value.
Reference:
http://php.net/manual/en/function.unset.php
Recommended Posts:
- PHP | Unset() vs Unlink() Function
- PHP | Program to delete an element from array using unset() function
- How to unset JavaScript variables?
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- p5.js | box() Function
- PHP | pow( ) Function
- D3.js | d3.hsl() Function
- p5.js | nf() Function
- CSS | var() Function
- p5.js | hex() function
- D3.js | d3.map.set() Function
- PHP | max( ) Function
- PHP | min( ) Function
- PHP | pi( ) Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



