This is all driving me crazy here.
$now = time (); gives me the timestamp right now.
Question:
does: $today = strtotime(date("Y-m-d")); give me the timestamp of seconds of today? starting from 00:00?
I've been trying to answer it myself by substracting $now with the total seconds elapsed since $today, but I'm getting a whole different amount.
EDIT
Im getting for today:
1355961600
and for now:
1356002627 (+ 1 second every second since I've posted this)
Since the difference is really small I think that should be it, but when I'm trying to calculate myself I don't get the same amount. Might be the difference between my localhost time and real time here... You guys think this is it?