I have three arrays:
$a = ['a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9', 'a10'];
$b = ['b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7', 'b8', 'b9', 'b10'];
$c = ['c1', 'c2', 'c3', 'c4', 'c5', 'c6', 'c7', 'c8', 'c9', 'c10'];
I want to combine these arrays to create:
$new1 = (a1, a2, b1, b2, c1, c2);
$new2 = (a3, a4, b3, b4, c3, c4);
$new3 = (a5, a6, b5, b6, c5, c6);
$new4 = (a7, a8, b7, b8, c7, c8);
$new5 = (a9, a10, b9, b10, c9, c10);
How to make it like that?