Log 4502
29/12/2024 2024-12-29 8:32$todayDate = ’10/12/2022′;
$tourDate = ’15/12/2022′;
$tourStatus = ‘נקבע סיור’;
if ($tourStatus === ‘נקבע סיור’) {
$todayTimestamp = strtotime($todayDate);
$tourTimestamp = strtotime($tourDate);
$daysDifference = abs(($tourTimestamp – $todayTimestamp) / 86400); // Number of seconds in a day
return $daysDifference;
} else {
return “”;
}