I have a timestamp which is like this
$timestamp = time();
so the $timestamp
has 10
digit timestamp
value...
now i use the follwoing code to convert it into (YYYY-mm-dd H:i)
format by the following method
$act_time = date('Y-m-d H:i', $arr_timestamp);
But now i want to convert it based on the GMT timezone format.. How can i achieve that?
NOTE: I dont want to use php's DateTime object