<?php $array = [ (object) ['ID' => 113, 'title' => 'text'], (object) ['ID' => 114, 'title' => 'text text text'], (object) ['ID' => 115, 'title' => 'text text'], (object) ['ID' => 116, 'title' => 'text'], ]; $result = []; foreach ($array as $obj) { $result[$obj->ID] = (object) ['title' => $obj->title]; } var_export($result);
You have javascript disabled. You will not be able to edit any code.