I have issue when converting date to a left weeks, hours and months.
Here my code:
$time_elapsed = time() - $createDate;
$hours = round($time_elapsed / 3600);
$days = round($time_elapsed / 86400 );
$weeks = round($time_elapsed / 604800);
$months = round($time_elapsed / 2600640 );
But when i display for example $months
, i get: 565
$createDate =1470165198; // Created with time(); 15 minutes ago
Supposed to show 0
no ? since there around 15 minutes difference between them.