Good afternoon, after Brazil removed the daylight saving time and as I am new to CWP I realized that the time shown by PHP is being one hour longer than the correct time. The server time is correct.
Server time:
[root@tzrymg America]# date
Wed Dec 2 15:45:08 -03 2020
Time shown by PHP (code):
<?php
date_default_timezone_set('America/Sao_Paulo');
echo date('Y-m-d H:i:s');
Result:
America/Sao_Paulo
2020-12-02 16:45:12
Any ideas on how I can solve this? Thanks in advance.