remove specific element from array php code example
Example 1: php remove specific element from array
if (($key = array_search('strawberry', $array)) !== false) {
unset($array[$key]);
}
Example 2: PHP: How to remove specific element from an array?
$array = array('apple', 'orange', 'strawberry', 'blueberry', 'kiwi', 'strawberry');
$array_without_strawberries = array_diff($array, array('strawberry'));
print_r($array_without_strawberries);
Example 3: Remove a specific element from an array php
$array=array_diff($array,['strawberry']);