remove value from array in php code example
Example 1: php delete element by value
$colors = array("blue","green","red");
if (($key = array_search("green", $colors)) !== false) {
unset($colors[$key]);
}
Example 2: php remove specific element from array
if (($key = array_search('strawberry', $array)) !== false) {
unset($array[$key]);
}
Example 3: Deleting an element from an array in PHP
$array = [0 => "a", 1 => "b", 2 => "c"];
unset($array[1]);
$array = [0 => "a", 1 => "b", 2 => "c"];
array_splice($array, 1, 1);
Example 4: remove array values php
array_splice(array, start, length, array)