laravel日期默认错误

时间:2015-03-27 10:41:53

标签: php laravel laravel-5


当我总是安装laravel v5并在完成它安装后,当我查看新安装时出现错误

  

警告:date_default_timezone_set():依赖于它是不安全的   系统的时区设置。您必需才能使用   date.timezone设置或date_default_timezone_set()函数。在   如果你使用了这些方法中的任何一种,你仍然会得到这个   警告,你很可能拼写错误的时区标识符。我们   选择了时区' UTC'现在,请将date.timezone设置为   选择你的时区。在D:\ vendor \ compiled.php第1808行

     

注意:date_default_timezone_set():时区ID''在...中无效   第1808行的D:\ vendor \ compiled.php

     

警告:   照亮\基金会\引导程序\ ConfigureLogging :: configureHandlers():   依赖系统的时区设置是不安全的。你是    required 使用date.timezone设置或date_default_timezone_set()函数。如果您使用其中任何一个   方法,你最有可能仍然得到这个警告   拼写错误的时区标识符。我们选择了时区' UTC'对于   现在,但请设置date.timezone以选择您的时区。在   第1673行的D:\ vendor \ compiled.php

     

致命错误:调用未定义的方法   照亮\基金会\引导程序\ ConfigureLogging :: configureHandler()   在第1673行的D:\ vendor \ compiled.php

但是对于v4.2.0来说一切都很好而且我正在使用v5,所以请告诉我。
在此先感谢

1 个答案:

答案 0 :(得分:3)

我们可以在配置文件app/config/app.php或以下部分的任何app/config/environment/app.php设置时区。

 /*
|--------------------------------------------------------------------------
| 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.
| 
*/

// Default value of timezone is 'UTC', I have changed it to 'Asia/Kolkata'

'timezone'  => 'Asia/Kolkata',