<?php $hidden = [ 'apples' => 19, 'eggs' => 7, 'grapes' => 144, 'mushrooms' => 3, 'oranges' => 16 ]; $list = ['grapes', 'apples', 'eggs', 'oranges']; $flippedList = array_flip($list); var_export(array_values(array_replace($flippedList, array_intersect_key($hidden, $flippedList))));
You have javascript disabled. You will not be able to edit any code.