laravel how to read app/config/app.php debug variable

2022-08-30 20:37:43

如何从控制器访问 中的调试变量以查看我是否处于调试模式?app/config/app.php

<?php                                                                                                                
                                                                                                                     |
  /*                                                                                                                 |        if ( $this->user->id )
  |--------------------------------------------------------------------------                                        |        {
  | Application Debug Mode                                                                                           |            // Save roles. Handles updating.
  |--------------------------------------------------------------------------                                        |            $this->user->saveRoles(Input::get( 'roles' ));
  |                                                                                                                  |
  | When your application is in debug mode, detailed error messages with                                             |            // Redirect to the new user page
  | stack traces will be shown on every error that occurs within your                                                |            return Redirect::to('admin/users/'.$this->user->id)->with('success', Lang::get('admin/users/messages.cre
  | application. If disabled, a simple generic error page is shown.                                                  |ate.success'));
  |                                                                                                                  |        }
  */                                                                                                                 |  else
                                                                                                                     |  {
  'debug' => true,    

答案 1

您可以使用帮助程序函数配置(Laravel 5+)。

$debug = config('app.debug');

拉拉维尔 4.2:

$debug = Config::get('app.debug');

答案 2

这个问题已经有了正确的答案,我只想补充一点,使用环境变量来做是一个更好的选择:

'debug' => env('APP_DEBUG', false),

在 .env 文件中:

APP_ENV=local

推荐