PHP Warning: date (): It is not safe to rely on the system's timezone settings

2

Greeting

This error comes to me in my EC2 instance of Centos.

  

PHP Warning: 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

My version of PHP is 5.6.35

I have already modified the php.ini file and it looks like this:

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/Bogota

Then I restarted apache and I still get the same error.

    
asked by Juan Ramirez 11.04.2018 в 17:10
source

1 answer

0

Just before you set date.timezone, you need to declare

date_default_timezone_set('America/Bogota');

Then restart and test if it already works

    
answered by 11.04.2018 в 17:18