> 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/0044.md).

# 0044: Неверное имя массива

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

**Возможные решения**: укажите глобальную или локальную переменную:

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