Answer the question
In order to leave comments, you need to log in
Timezone not correct in PHP docker container, why?
Tell me where else to look to set the time in PHP.
on server date:
Thu 29 Oct 2020 20:23:43 +05
in container date:
Thu Oct 29 20:24:15 +05 2020
In PHP:
var_dump(ini_get('date.timezone'));
// string(18) "Asia/Yekaterinburg"
var_dump(date_default_timezone_get());
//string(3) "UTC"
var_dump(new \DateTime());
//{ ["date"]=> string(26) "2020-10-29 15:16:16.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" }
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Yekaterinburg
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question