View Full Version : Very simple request, not even a hack :P
Mijae
04-03-2004, 07:22 PM
I have this on my page:
$sinceopening = floor((time() - strtotime('June 24, 2002')) / 86400);
Which shows total days since my forums went offline, and I can use the variable in the header. What I want is something similar, but to count days until a specified date (XX days remaining until our second anniversary type of thing).
Is there any way to make it a small variable to use in the header as well? :D
Thanks.
Boofo
04-03-2004, 07:48 PM
There's a java script hack on here for vB2 called the countdown hack (or something similar) that will do what you want. Just do a search for countdown. ;)
Mijae
04-04-2004, 01:22 AM
There's a java script hack on here for vB2 called the countdown hack (or something similar) that will do what you want. Just do a search for countdown. ;)
Ok.
I just read what I wrote, and I ment to say that the code above shows days since the forums went online :P
I'll go search now.
Mijae
04-04-2004, 07:10 PM
Ok.
I just read what I wrote, and I ment to say that the code above shows days since the forums went online :P
I'll go search now.
Found some hacks but they are too much for what I want.
I just want a simple php command that will print how many days until a specified date. That simple.
NTLDR
04-04-2004, 07:38 PM
// ###################### Start fetch_countdown_timer ######################
// returns the time left untill $dateline
function fetch_countdown_timer($dateline) {
global $vboptions;
$diff = $dateline - (time() - $vboptions['hourdiff']);
$days = ($diff - ($diff % 86400)) / 86400;
$diff = $diff - ($days * 86400);
$hours = ($diff - ($diff % 3600)) / 3600;
$diff = $diff - ($hours * 3600);
$minutes = ($diff - ($diff % 60)) / 60;
$diff = $diff - ($minutes * 60);
$seconds = ($diff - ($diff % 1)) / 1;
return iif($days > 0, $days.'d ', '').iif("$hours > 0 && $days != 0", $hours.'h ', '').$minutes.'m';
}
Add that to functions.php somewhere sensible, like before the end "downloaded" comment then do something like:
$futureevent = fetch_countdown_timer(strtotime('June 24, 2002'));
Then $futureevent will contain a string like '5d 21h 32m'.
Boofo
04-04-2004, 07:42 PM
How would you do a function for time since like this?
Mijae
04-04-2004, 07:56 PM
Nice code.
But could you rewrite that so it will only say how many days are left?
I dont care about hours, minutes, seconds...I just want days :D
Boofo
04-04-2004, 07:59 PM
Just comment this out:
$hours = ($diff - ($diff % 3600)) / 3600;
$diff = $diff - ($hours * 3600);
$minutes = ($diff - ($diff % 60)) / 60;
$diff = $diff - ($minutes * 60);
$seconds = ($diff - ($diff % 1)) / 1;
and change this:
return iif($days > 0, $days.'d ', '').iif("$hours > 0 && $days != 0", $hours.'h ', '').$minutes.'m';
to this:
return iif($days > 0, $days.'d ', '');
Mijae
04-04-2004, 08:31 PM
You know what,
$anniversary = floor(365 - (time() - strtotime('June 24, 2003')) / 86400);
Works like a charm. The only thing is that it tells me there are 79 days left, so does this year have 366 days?
NTLDR
04-04-2004, 08:33 PM
Yes, 2004 is a leap year ;)
Boofo
04-04-2004, 08:40 PM
I would like to have the code like above that countsdown the days hours and miutes, too. Can a time since be done like it is above?
Boofo
04-05-2004, 12:07 AM
Lee, will your code account for leap years?
NTLDR
04-05-2004, 08:22 AM
It should work fine as it doesn't deal with years, just days, hours and minutes :)
Boofo
04-05-2004, 09:38 AM
But wouldn't it have to take Feb, 29th into account as a day on a leap year?
Which I supoose is a moot point as Feb 29th is gone and won't be here for another 4 yeras. ;)
NTLDR
04-05-2004, 09:40 AM
PHP should be clever enough to know if I give it a dateline for say 1 March 2004 that the day before it is 29 Feb 2004 ;)
Boofo
04-05-2004, 09:43 AM
Oh, ok, I didn't know PHP was able to figure that out. I guess I'm still used to the older versions of Turbo Pascal's way of doing things. ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.