How can I loop to display the values of array key type without looping other keys because am have more than 500 array lines and reduce time.
$details = array(
array('year' => '1990'),
array('year' => '1995'),
array('condition' => 'working'),
array('type' => 'bus'),
array('type' => 'car'),
array('type' => 'bike'),
);
$details['type'] = array('bus','car','bike')