Hey,
I was wondering if anybody could explain to me why gmmktime() is returning the date/time 2 hours out.
British Summer Time (BST) is +01:00 ahead of GMT. Thus, gmmktime() should return a date/time 1 hour less than time().
print date('d-M-Y H:i', gmmktime());
returns: 14-Apr-2003 17:25
...it should be 15:25!!
bash-2.05a$ date
Mon Apr 14 16:25:56 BST 2003
Any idea why this is happening?
Thanks, Andy.