lumen下設置timezone

仍是加個全局中間件php

    public function handle($request, Closure $next)
    {
        // ...
        date_default_timezone_set(env('TIMEZONE', 'UTC'));

        return $next($request);
    }

  

 

不要忘了在bootstrap/app.php裏註冊html

 

.env文件裏添加bootstrap

 

TIMEZONE=Asia/Shanghai
相關文章
相關標籤/搜索