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
相关文章
相关标签/搜索