Привет всем. Помогите пожалуйста. Как мне вывести массив, который находится в массиве.
Мне нужен 3 массив и в нём 'Location'. Пишу echo $utp_event[3][0], но ничего не выводится.
$utp_event = array(
array(
'title' => esc_attr__('Start Date', 'upside-toolkit'),
'type' => 'datetime',
'id' => 'utp-event-date-start',
'format' => 'Y-m-d H:i',
'datepicker' => true,
'timepicker' => true,
),
array(
'title' => esc_attr__('End Date', 'upside-toolkit'),
'type' => 'datetime',
'id' => 'utp-event-date-end',
'format' => 'Y-m-d H:i',
'datepicker' => true,
'timepicker' => true,
),
array(
'title' => esc_attr__('Price', 'upside-toolkit'),
'type' => 'text',
'id' => 'utp-event-price',
'desc' => esc_attr__('Enter string price for purpose display.', 'upside-toolkit')
),
array(
'title' => esc_attr__('Location', 'upside-toolkit'),
'type' => 'text',
'id' => 'utp-event-location'
),