Agregar datos dinámicamente a una matriz vacía en PHP
$array[] = "item"; // for your $arr1
$array[$key] = "item"; // for your $arr2
array_push($array, "item", "another item");
Wicked Weevil