0

Currently I am using:

SetEnv TZ America/Los_Angeles

in htaccess.

Is there a way to define the timezone in the codeignitor config files?

Harry
  • 1,072
  • 10
  • 17
Piyush
  • 3,827
  • 7
  • 35
  • 67
  • http://stackoverflow.com/questions/16765158/date-it-is-not-safe-to-rely-on-the-systems-timezone-settings-in-codeigniter/27879205#27879205 – Shaiful Islam Mar 27 '15 at 09:05

1 Answers1

0

Write in your index.php codeignator file:

if (function_exists("date_default_timezone_set"))
    date_default_timezone_set("America/Los_Angeles");
Rizier123
  • 57,440
  • 16
  • 89
  • 140
Saty
  • 22,213
  • 7
  • 30
  • 49