I have a question but not a problem.
I have 2 arrays.
Is there php function that would return array("a" => "x1", "b" => "x2") if passed $array_1 and $array_2 or I have to write it. Looked at the manual and couldn't find it.
Thanks
I have 2 arrays.
Code:
$array_1 = array("a", "b");
$array_2 = array("a" => "x1", "b" => "x2", "c" => "x3");
Thanks
Comment