Такая ссылка есть
<a target="_blank" href="/admin/event/data?id=<?=$www?>&t1=<?=$t1?>&t2=<?=$t2?>&position=<?= $position1?>">
Мне нужно передать эти 4 параметра на контроллер data:
public function actionData($id = null,$t1 = null, $t2 = null, $position = null)
{
if($id != null && $t1 != null && $t2 != null && $position) {
echo $id . " " . $t1 . " " . $t2 . " " . $position;
}
return $this->render('data', [
]);
}
но выводит следующую ошибку:
5 2018-01-11 2018-03-31 63
An Error occurred while handling another error:
exception 'yii\web\HeadersAlreadySentException' with message 'Headers already sent in C:\OpenServer\domains\receptionist\modules\admin\controllers\EventController.php on line 325.' in C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\web\Response.php:366
Stack trace:
#0 C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\web\Response.php(339): yii\web\Response->sendHeaders()
#1 C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\web\ErrorHandler.php(135): yii\web\Response->send()
#2 C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\base\ErrorHandler.php(111): yii\web\ErrorHandler->renderException(Object(yii\web\HeadersAlreadySentException))
#3 [internal function]: yii\base\ErrorHandler->handleException(Object(yii\web\HeadersAlreadySentException))
#4 {main}
Previous exception:
exception 'yii\web\HeadersAlreadySentException' with message 'Headers already sent in C:\OpenServer\domains\receptionist\modules\admin\controllers\EventController.php on line 325.' in C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\web\Response.php:366
Stack trace:
#0 C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\web\Response.php(339): yii\web\Response->sendHeaders()
#1 C:\OpenServer\domains\receptionist\vendor\yiisoft\yii2\base\Application.php(392): yii\web\Response->send()
#2 C:\OpenServer\domains\receptionist\web\index.php(12): yii\base\Application->run()
#3 {main}
Подскажите, что это за ошибка?
Виртуальный выделенный сервер (VDS) становится отличным выбором
Как правильно использовать контейнер set, состоящий из класса и компаратора? Написала код, но выдает очень много ошибокПример: Как выглядит...
На сайте Microsoft, есть статья, как привязать Google test к VS: ссылкаВыполнив начальный этап, а именно установка адаптера для этих тестов, я пробую...