<?php // Создаю массив вне рендера $cmd_outputs = [ '1-1' => 'Привет' ]; function func($cmd_outputs) { // Тут почему-то происходит ошибка var_export($cmd_outputs['1-1']); }; function f() { // Поэтому объявляю global global $cmd_outputs; // Тут все хорошо var_export($cmd_outputs['1-1']); func($cmd_outputs); return 'ok'; }; f();
You have javascript disabled. You will not be able to edit any code.