<?php $a = [2.2, 1.1, 3.9]; $b = ["B", "C", "F"]; $new = []; foreach ($a as $index => $value) { $new[] = [ $b[$index], $value ]; } print_r($new);
You have javascript disabled. You will not be able to edit any code.