Reputation: 79
I am passing a date in "Y-m-d H:i" format to strtotime and it is returning 5hours 30 minutes less in result.
Upvotes: 1
Views: 182
Reputation: 324640
Make sure you set the timezone correctly. You can use date_default_timezone_set()
to set it to what you want.
Upvotes: 1