<?php $array = array( 'index1' => 'Deleted', 'index2' => 'numbers', 'index3' => 'test', 'index4' => 'Inserted', ); $specificIndex = 'index3'; $array1=array(); foreach($array as $key => $value){ if($key==$specificIndex){ $array1[$key] = $value; unset($array[$specificIndex]); } } print_r($array); print_r($array1);
You have javascript disabled. You will not be able to edit any code.