Chris W wrote:

> The following code doesn't do what I expect and I was wondering if
> someone could tell me why and how to make it do what I want.
> 
> $NowT = strtotime("January 9 2004");
> $EventT = strtotime("June 1 2004");
> print ($EventT - $NowT)/86400;
> 
> I get 143.958333333
> 
> Why don't I get 144?
> 
> Chris W
Hi Chris,
try this:
 $NowT = strtotime("January 9 2004");
 $EventT = strtotime("June 1 2004");
 print (round($EventT - $NowT)/86400);

greetings, Jonas

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to