I am trying to set an expiration on DB entries. I've set the field to datetime and entered some values manually through MySQL
I take the value from the table and convert it to strtotime(). then I get the current time using strtotime("now"); or time(); they seemed to return the same value.
I then take the future date(the one from the db) and with if statement check if its smaller then current time if so I set it as expired. if it's still bigger then current time I return how much time left..
Here is the code for that:
$time_left = "";
$value['ex_date'] = '2012-11-22 18:17:33';// this is whats in the DB now.
$future_time = strtotime($value['ex_date']);
$now_time = strtotime('now');
if($deal_end < $now_time){
$time_left = 'Expired';
}else{
$seconds = $future_time - $now_time;
$days = floor($seconds / 86400);
$seconds %= 86400;
$hours = floor($seconds / 3600);
$seconds %= 3600;
$minutes = floor($seconds / 60);
$seconds %= 60;
if($days >= 1) {$time_left .= "D:$day ";}
if($hours >= 1) {$time_left .= "H:$hours ";}
if($minutes >= 1) {$time_left .= "M:$minutes ";}
if($seconds >= 1) {$time_left .= "S:$seconds ";}
For some reason the above doesn't work well. its like there is some time gap.
my question is: is there a way to check server time vs database time ?
because the strtotime('now'); time seems different then current timestemp by like 2/3 hours for some reason.
strtotime('now')is the same astime(). – deceze Nov 22 '12 at 10:31