After moving from one server to another, there was such an error, I just can not understand what the problem is. Help me please!
Fatal error: diff (): Unknown property (w) in /var/www/arashvg/data/www/all-payeer.ru/bonus.php on line 199
Here is the code
function diff(DateTime $datetime2, DateTime $datetime1 = null) { if (!isset($datetime1)) { $datetime1 = new DateTime('now'); } $interval = $datetime1->diff($datetime2, false); $days = $interval->days; // calculate seconds $interval->s = $datetime2->getTimestamp() - $datetime1->getTimestamp(); $interval->i = floor($interval->s / 60); $interval->h = floor($interval->s / (60 * 60)); $interval->d = $days; $interval->w = floor($days / 7); //На этой строке выдает ошибку $interval->m = floor($days / $datetime1->format('t')); return $interval; }