How to set time zone in codeigniter?

后端 未结 11 1855
醉话见心
醉话见心 2020-11-30 00:02

I am working in a php project using codeigniter. Please advise me what is the global way to set time zone for php and mysql . In which file I can set this. I want to set it

11条回答
  •  迷失自我
    2020-11-30 00:12

    In the application/config folder, get the file config.php and check for the below:

    $config['time_reference'] = '';

    Change the value to your preferred time zone. For example to set time zone to Nairobi Kenya: $config['time_reference'] = 'Africa/Nairobi';

提交回复
热议问题