3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [ 0 => 'AXA', 1 => 'VHV', 2 => 'TEST', ]; $doctypes = [ 12 => 'AXA', 156 => 'VHV', 8 => 'TEST', ]; $tops = array_filter( $a, function (string $name, int $key) use ($doctypes) { return in_array($name, $doctypes); }, ARRAY_FILTER_USE_BOTH ); var_dump($tops); exit;

preferences:
34.89 ms | 402 KiB | 5 Q