Skip to content

Instantly share code, notes, and snippets.

@fahdi
Created November 2, 2021 23:55
Show Gist options
  • Save fahdi/22ee6f87216c40d4043451c49af40caf to your computer and use it in GitHub Desktop.
Save fahdi/22ee6f87216c40d4043451c49af40caf to your computer and use it in GitHub Desktop.
Calculate days between dates in php
<?php
function calculateDaysBetweenDates() {
// set time zone to karachi
date_default_timezone_set('Asia/Karachi');
$startDate = new DateTime( 'last thursday' );
$endDate = new DateTime( 'today' );
$interval = $startDate->diff( $endDate );
return $interval->format( '%a' );
}
echo calculateDaysBetweenDates();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment