Esamino una matrice di oggetti e desidero eliminare uno degli oggetti in base alla proprietà "id", ma il mio codice non funziona.
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
}
}
}
Eventuali suggerimenti. Grazie.