コントローラー内でこの書き方だとredirect後の処理も走ってしまい33が出力された。
TestController.php
$this->redirect('/Error');
echo 33;
exit;
returnでしっかり処理を終わらせる。
Test2Controller.php
return $this->redirect('/Error');
echo 33;
exit;
Go to list of users who liked
More than 1 year has passed since last update.
コントローラー内でこの書き方だとredirect後の処理も走ってしまい33が出力された。
$this->redirect('/Error');
echo 33;
exit;
returnでしっかり処理を終わらせる。
return $this->redirect('/Error');
echo 33;
exit;
Register as a new user and use Qiita more conveniently
Go to list of users who liked