@OneTwoThreeFourFive

Как вывести массив в php?

Привет всем. Помогите пожалуйста. Как мне вывести массив, который находится в массиве.
Мне нужен 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'
                ),
  • Вопрос задан
  • 113 просмотров
Пригласить эксперта
Ответы на вопрос 3
@LiguidCool
Если массив ассоциативный, то почему вы цифры ставите?
Ответ написан
echo $utp_event[3]['title'][0]
Ответ написан
iNickolay
@iNickolay
var_dump($utp_event[3]['title']);
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы