<?php $arr = [ [1, 2, 3, 4], ['one', 'two', 'three', 'four'] ]; // I want to add this functin to the PHP function combine_array_items ( $arr ) { return array_map(function (...$r) { return $r; }, ...$arr); } print_r( combine_array_items ( $arr ) );
You have javascript disabled. You will not be able to edit any code.