Recorro una matriz de objetos y quiero eliminar uno de los objetos en función de su propiedad 'id', pero mi código no funciona.
foreach($array as $element) {
foreach($element as $key => $value) {
if($key == 'id' && $value == 'searched_value'){
//delete this particular object from the $array
unset($element);//this doesn't work
unset($array,$element);//neither does this
}
}
}
Alguna sugerencia. Gracias.