I am try to set one value to another array. I have this type of two arrays.
Array
(
[0] => test1
[1] => test2
)
Array
(
[0] => 351
[1] => 352
[2] => 353
[3] => 354
[4] => 355
[5] => 356
)
Now I want to do something like set the first three values of the second array on test1, and set another three values from the second array to test2.
test1 = 351,352,353
test2 = 354,355,356
Is it possible?