php unset php array where value code example
Example 1: php delete element by value
$colors = array("blue","green","red");
//delete element in array by value "green"
if (($key = array_search("green", $colors)) !== false) {
unset($colors[$key]);
}
Example 2: php unset
// Destroy a variable
<?php
unset ($var1, $var2.... )
?>