Log 2095
28/09/2023 2023-09-28 13:35$arrival_date = #תאריך הגעה לחו”ל#;
$departure_date = #תאריך עזיבה#;
// Convert dates to timestamps
$arrival_timestamp = strtotime($arrival_date);
$departure_timestamp = strtotime($departure_date);
// Calculate the difference in seconds between the two timestamps
$difference_seconds = $departure_timestamp – $arrival_timestamp;
// Convert seconds to days
$total_days = floor($difference_seconds / (60 * 60 * 24));
return $total_days;