ฉันวนซ้ำวัตถุต่างๆและต้องการลบวัตถุใดวัตถุหนึ่งโดยพิจารณาจากคุณสมบัติ 'id' แต่รหัสของฉันไม่ทำงาน 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 } } } ข้อเสนอแนะใด ๆ ขอบคุณ