Код: Выделить всё
Array
(
[time] => Array
(
[0] => 6:00 PM
[1] => 4:00 PM
)
[id] => Array
(
[0] => #1 Hits of the 60's
[1] => 3 Men and a Lady
)
[url] => Array
(
[0] => hits-of-the-60
[1] => 3-men-and-a-lady
)
[ev_evc_id] => Array
(
[0] => 2
[1] => 2
)
[address] => Array
(
[0] => Caravelle Theatre
[1] => God and Country Theatre
)
[phone] => Array
(
[0] => 1-800-4Branson (800-427-2676)
[1] => 1-800-4Branson (800-427-2676)
)
)
Желаемый результат следующий:
Код: Выделить всё
Array
(
[time] => Array
(
[0] => 4:00 PM
[1] => 6:00 PM
)
[id] => Array
(
[0] => 3 Men and a Lady
[1] => #1 Hits of the 60's
)
[url] => Array
(
[0] => 3-men-and-a-lady
[1] => hits-of-the-60
)
[ev_evc_id] => Array
(
[0] => 2
[1] => 2
)
[address] => Array
(
[0] => God and Country Theatre
[1] => Caravelle Theatre
)
[phone] => Array
(
[0] => 1-800-4Branson (800-427-2676)
[1] => 1-800-4Branson (800-427-2676)
)
)
Подробнее здесь: https://stackoverflow.com/questions/306 ... -first-row