Como definir o fuso horário do PHP para o servidor da Web baseado em nuvem distribuído para diferentes regiões geográficas?

1

Estou recebendo o seguinte aviso durante a execução de php -i :

PHP Warning: Unknown: 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. in Unknown on line 0
...

Nossa VM é hospedada e distribuída para várias regiões geográficas. É semelhante ao "us-east" e "us-west" usado pela Amazon (embora não usemos a Amazon).

Como definimos date.timezone quando o servidor é replicado em fusos horários diferentes?

    
por jww 01.06.2016 / 12:39

1 resposta

1

Você definiu date.timezone no seu arquivo php.ini .

Este comando irá localizar o arquivo php.ini que o PHP está usando atualmente:

php -i | grep 'Configuration File.* => '

No exemplo abaixo, meu php.ini está localizado em /opt/cpanel/ea-php56/root/etc/php.ini e date.timezone está definido como UTC :

root@node2 [~]# php -i | grep 'Configuration File.* => '
Configuration File (php.ini) Path => /opt/cpanel/ea-php56/root/etc
Loaded Configuration File => /opt/cpanel/ea-php56/root/etc/php.ini

root@node2 [~]# grep 'date\.timezone' /opt/cpanel/ea-php56/root/etc/php.ini
; http://php.net/date.timezone
date.timezone = "UTC"
    
por 01.06.2016 / 14:54