Change Timezone in Lumen or Laravel 5

前端 未结 15 1399
逝去的感伤
逝去的感伤 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 03:48

    Use php time zones from php manual Php time zones

    For example mine i changed from the UTC value in config/app.php with

    'timezone' => 'Africa/Nairobi',
    

提交回复
热议问题