> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/ru/troubleshooting/errors/0045.md).

# 0045: Неверный синтаксис массива: пропущено имя переменной

У элемента [массива](/ru/coding/arrays.md#obshii-sintaksis) отсутствует имя или индексная [переменная](/ru/coding/variables.md).

**Возможные решения**: проверьте синтаксис массива и укажите недостающие переменные:

```
($index,2i) = 0 // ошибка
$array(,2i) = 0 // ошибка
$array($index,2i) = 0 // верно
```
