Hellow Reader's ,
Some time we need to set default time zone in our applications.In this blog i am going to explain how you can do this.
This is a simple step for change the defualt timezone in cakephp.
Go to your project directory
Open App =>Config=>core.php
Add below code in core.php file.
date_default_timezone_set('Asia/Calcutta');
Configure::write('TimeZone', 'Asia/Calcutta');
If you are using Cakephp 2.6 + version then change in bootstrap.php.
Go to your project directory
Open App =>Config=>bootstrap.php
date_default_timezone_set('Asia/Calcutta');
Configure::write('TimeZone', 'Asia/Calcutta');
Please feel free to comment.
0 Comment(s)