1

Which is better way to set timezone in Codeigniter? I've tried this in index.php

date_default_timezone_set("Asia/Kolkata");

Is it possible?

ArmKh
  • 435
  • 9
  • 31
  • 2
    It has been asked before http://stackoverflow.com/questions/31309536/how-to-set-time-zone-in-code-igniter/31309903#31309903 –  Jun 06 '16 at 09:38

1 Answers1

8

Two options for adding timezone in codeigniter. I tried with both and both is working fine for whole project.

  • add it in your main index.php file.
  • place it in your config file like this(After defined('BASEPATH') Line).

    defined('BASEPATH') OR exit('No direct script access allowed');
    
    date_default_timezone_set('Asia/Kolkata');
    
Bhavin
  • 2,070
  • 6
  • 35
  • 54