<?php $a=[1,2,3,4,5]; $b=[2016, 2017, 2018, 2019, 2020]; $keys = range("A", chr(64+count($a))); $c = array_values(array_merge_recursive(array_combine($keys,$a),array_combine($keys,$b))); Var_dump($c);
You have javascript disabled. You will not be able to edit any code.