Log 4464
22/12/2024 2024-12-22 13:03$dateCreated = ’29/11/2021′;
$currentDate = ’10/12/2022′;
$createdTimestamp = strtotime($dateCreated);
$currentTimestamp = strtotime($currentDate);
$daysDifference = ($currentTimestamp – $createdTimestamp) / (60 * 60 * 24);
return $daysDifference;