Change Timezone in Lumen or Laravel 5

前端 未结 15 1425
逝去的感伤
逝去的感伤 2020-11-29 02:56

I am using Lumen framework. How can I change Timezone to Europe/Paris CEST?

I added a varaible in my .env file:

APP_TIMEZONE=Europe/Pari         


        
15条回答
  •  没有蜡笔的小新
    2020-11-29 04:01

    You just have to edit de app.php file in config directory Just find next lines

    /*
    |--------------------------------------------------------------------------
    | Application Timezone
    |--------------------------------------------------------------------------
    |
    | Here you may specify the default timezone for your application, which
    | will be used by the PHP date and date-time functions. We have gone
    | ahead and set this to a sensible default for you out of the box.
    |
    */
    
    'timezone' => 'UTC',
    

    And.. chage it for:

    'timezone' => 'Europe/Paris',
    

提交回复
热议问题