<?php $values = [ 'ffffffff' => 'a', 'ffflohff' => 'b', 'lohlohff' => 'c', ]; $filteredValues = array_intersect_key($values, array_flip(preg_grep('/loh/', array_keys($values)))); var_dump($filteredValues);
You have javascript disabled. You will not be able to edit any code.