<?php $array = array( 'index1' => 'Deleted', 'index2' => 'numbers', 'index3' => 'test', 'index4' => 'Inserted', ); $specificIndex = array('index1', 'index3'); $array1 = array_intersect_key($array, array_flip($specificIndex)); var_dump($array1);
You have javascript disabled. You will not be able to edit any code.