is mktime() using date() daylight saving aware?
Posted
by Haroldo
on Stack Overflow
See other posts from Stack Overflow
or by Haroldo
Published on 2010-04-20T12:12:52Z
Indexed on
2010/04/20
12:23 UTC
Read the original article
Hit count: 376
I've read through a few questions about this here on s.o. and none seem to ask or answer the question very bluntly:
$ts_today = mktime( 0, 0, 0, date('m'), date('d'), date('Y') );
is this daylight saving aware?
if not, how do i make mktime() daylight saving aware?
© Stack Overflow or respective owner