374
Fatal error: Uncaught exception 'think\exception\ErrorException' with message 'date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.
出现这个是因为php.ini没有设置好时区
打开php.ini搜索date.timezone
把;date.timezone = 前面的;号去掉 加上PRC
修改后date.timezone = PRC
问题就可以解决了,亲测有效。