I have apache and php running on OSX.
I have a simple page printing phpinfo()
.
<?php
phpinfo();
In my php.ini, no matter what I write for date.timezone, phpinfo says Europe/Zurich
(both Local and Master).
I know I am modifying the correct file because if I change some other flag (short_open_tag
) I see the changes immediately (after apache restart). But changing the timezone to say
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/Los_Angeles
Nothing changes...
I've also tried
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "America/Los_Angeles"
I'm going crazy - what am I missing?