<?php $fruits = ['yellow', 'green', 'orange']; $relatedFurites = [ ['yellow'=>'banana', 'green'=>'avacado'], ['yellow'=>'mango', 'green'=> 'chilli'] ]; Foreach($fruits as $color){ $output[$color] = array_column($relatedFurites, $color); } Var_dump($output);
You have javascript disabled. You will not be able to edit any code.