remove elements from array php code example
Example 1: php erase element from array
foreach ($items as $key =>$item){
if(condition){
unset($item[$key]);
}
}
Example 2: how to delete item from array php
$array = [0 => "a", 1 => "b", 2 => "c"];
unset($array[1]);