Remove a specific element from an array php code example
Example 1: php remove specific element from array
if (($key = array_search('strawberry', $array)) !== false) {
unset($array[$key]);
}
Example 2: Remove a specific element from an array php
$array=array_diff($array,['strawberry']);