narayan nath
narayan nath

Reputation: 21

How to get current date and time with respect to Time Zone in Codeigniter

When I run the following code in codeigniter, it returns incorrect time and date for the India location. Please let me the solution.

'date_default_timezone_set('Asia/Kolkata');
$date = date('Y-m-d H:i:s', time());
echo $date;'

Upvotes: 2

Views: 7730

Answers (1)

user6412824
user6412824

Reputation:

try this

$now = new DateTime();
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
echo $now->format('Y-m-d H:i:s');

Upvotes: 1

Related Questions