У меня есть цикл, в котором в массив ставятся значения
$categories = $this->model_catalog_product->getCategories($result['product_id']);
$categories_info = $this->model_catalog_category->getCategory($categories[0]['category_id']);
$data['products'][] = array(
'product_id' => $result['product_id'],
'product_cat' => $categories_info['name'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $rating,
'category' => $this->model_catalog_product->getCategories($result['product_id']),
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'])
);
Но
$categories_info['name']
есть не у всех элементов цикла и если этого нет - выскакивает ошибка.