P
P
part_os2020-10-29 18:30:55
PHP
part_os, 2020-10-29 18:30:55

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" }


throw into a container
volumes:
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro

in php.ini
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Yekaterinburg

phpinfo()
https://i.imgur.com/HmZ2SFI.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
part_os, 2020-10-29
@part_os

ppc turned out Laravel changes in config/app.php
set 'timezone' => 'Asia/Yekaterinburg',

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question