pretty straightforward question actually..
is it possible in PHP to combine two separate arrays of the same length to one associative array wh
There’s already an array_combine function:
$combined = array_combine($keys, $values);