There is a function date_default_timezone_set()
in php which accepts timezone string like "UK/London". But unfortunately I have the GMT offset of the user only.
Let's say I am on GMT +5 and I want to get current time based on GMT +5. I did a lot of search on google but did not help.
Since, I do not have the time zone string I am looking for something like
$current_date = date("Y M D H:S, "GMT +5");
Please help