PDA

View Full Version : HELP!!! I need to find the timestamp ranges for the last 7 days..


Michael Morris
10-03-2004, 03:14 AM
Hi.

I'm trying to write a script that blocks news into daily digests. Since vbulletin uses a timestamp instead of a date field I need to find a way to query for the last seven days, one at a time (since doing them together confuses the sorting no matter how I try). I've been searching through the code to try to find such a function, no luck. I'm getting angry because I wouldn't have to do all this work if vbulletin would either use a proper date field MySQL can manipulate or at least include on in addition to the timestamp...

Rephrase -- I need to find out the time range for today, then yesterday, then the day before yesterday and so on back 7 days. Each time will be a query.

Velocd
10-03-2004, 03:33 AM
Timestamps are in seconds. They're much more convenient to use, from my experience, then the inflexible SQL date format. Plus, they contain time, not merely the date.

So if you want days, take (60 x 60) x 24, giving you 86,400. 86,400 x 2, 3, ... 7 will give you those timestamps for that duration of days.


// Place ranges into an array.

for ($i = 1; $i <= 7; $i++)
{
$array[] = TIMENOW - ($i * 86400);
}


Another method to get the timestamp (relative to today) without math is using strtotime():

$seven_days_ago = strtotime('7 days ago');

Michael Morris
10-03-2004, 04:02 AM
Timestamps are in seconds. They're much more convenient to use, from my experience, then the inflexible SQL date format. Plus, they contain time, not merely the date.

So if you want days, take (60 x 60) x 24, giving you 86,400. 86,400 x 2, 3, ... 7 will give you those timestamps for that duration of days.


// Place ranges into an array.

for ($i = 1; $i <= 7; $i++)
{
$array[] = TIMENOW - ($i * 86400);
}


Another method to get the timestamp (relative to today) without math is using strtotime():

$seven_days_ago = strtotime('7 days ago');

That can't work because days start and end at midnight, and the functions you cite calculate going back from the current time.

I found something that I *think* will work, the MySQL UNIX_TIMESTAMP function...

Treasure Quest
01-26-2005, 05:36 PM
Hi,
Sorry to but in but could someone tell me or send me a link to how I can display the timestamp "Yesterday" "Today" in bold?
I think they would stand out better in bold.

Thanks,

Greg