[Solved] Add +4GMT for php [duplicate]


You can use time() to get the current time in seconds (UNIX) and add 3600*4.

echo date("F j, Y, g:i a", time()+3600*4);

solved Add +4GMT for php [duplicate]