3v4l.org

run code in 500+ PHP versions simultaneously
<?php $array = [ ['tabelle_mannschaft' => 'SV Winter'], ['tabelle_mannschaft' => 'Mannschaft 7'], ['tabelle_mannschaft' => 'TSV HORIZONT'], ['tabelle_mannschaft' => 'Mannschaft 8'], ]; $subset = [ ['tabelle_mannschaft' => 'TSV HORIZONT'], ['tabelle_mannschaft' => 'Mannschaft 7'], ]; $lookup = array_column($subset, null, 'tabelle_mannschaft'); foreach ($array as &$row) { $row = $lookup[$row['tabelle_mannschaft']] ?? array_shift($subset); } var_export($array);
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.21, 8.5.0 - 8.5.7
array ( 0 => array ( 'tabelle_mannschaft' => 'TSV HORIZONT', ), 1 => array ( 'tabelle_mannschaft' => 'Mannschaft 7', ), 2 => array ( 'tabelle_mannschaft' => 'TSV HORIZONT', ), 3 => array ( 'tabelle_mannschaft' => 'Mannschaft 7', ), )

preferences:
91.79 ms | 1302 KiB | 4 Q