I have these type four separate arrays
Array
(
[0] => cmbt
[1] => cmbt
)
Array
(
[0] => airport
[1] => guindy
)
Array
(
[0] => 1000
[1] => 500
)
Array
(
[0] => 2500
[1] => 1000
)
and I need to combine as a result like this
array(
0 => array(
'cmbt',
'airport',
1000,
2500
),
1 => array(
'cmbt',
'guindy',
500,
1000,
)
Please help me...