<?php $arr =[ 0 => [ 'id' => 11, 'title' => 't1' ], 1 => [ 'id' => 12, 'title' => 't2' ] ]; $fianl_array = array_combine(array_column($arr,'id'),$arr); print_r($fianl_array);
You have javascript disabled. You will not be able to edit any code.