up vote 4 down vote favorite
1
share [g+] share [fb]

I have start date and end date.

I need to find out the day that is Sunday or Monday etc dependent upon user click on check box.

How can I find/calculate that in PHP?

link|improve this question

56% accept rate
feedback

5 Answers

up vote 4 down vote accepted

You could create a function that uses strtotime() recursively to count the number of days. Since strtotime("next monday"); works just fine.

function daycount($day, $startdate, $counter)
{
	if($startdate >= time())
	{
		return $counter;
	}
	else
	{
		return daycount($day, strtotime("next ".$day, $startdate), ++$counter);
	}
}

echo daycount("monday", strtotime("01.01.2009"), 0);

Hopefully this is something you're looking for :)

link|improve this answer
Nice and consice, so I scored you +1. However I strtotime() is expensive, as is recursion, so this will run quite slowly for big date ranges. The mathematical version supplied by @w35l3y is much much more efficient code. – Spudley Sep 28 '10 at 15:57
feedback

no loops and no recursivity

function number_of_days($day, $start, $end)
{
    $w = array(date('w', $start), date('w', $end));

    return floor( ( date('z', $end) - date('z', $start) ) / 7) + ($day == $w[0] || $day == $w[1] || $day < ((7 + $w[1] - $w[0]) % 7));
}

define('ONE_DAY', 86400); // 24 * 60 * 60

$start = time() + 2 * ONE_DAY;
$end = $start + 7 * ONE_DAY;

echo number_of_days(0, $start, $end); // SUNDAY
echo number_of_days(1, $start, $end); // MONDAY
echo number_of_days(2, $start, $end); // TUESDAY
echo number_of_days(3, $start, $end); // WEDNESDAY
echo number_of_days(4, $start, $end); // THURSDAY
echo number_of_days(5, $start, $end); // FRIDAY
echo number_of_days(6, $start, $end); // SATURDAY
?>
link|improve this answer
Sweet. Scary looking code though ;) One or two constants might make it easier to read. – Spudley Sep 28 '10 at 15:58
feedback
<?php
$date = strtotime('2009-01-01');
$dateMax = strtotime('2009-02-23');

$nbr = 0;
while ($date < $dateMax) {
  var_dump(date('Y-m-d', $date));
  $nbr++;
  $date += 7 * 24 * 3600;
}
echo "<pre>";
 var_dump($nbr);
?>
link|improve this answer
feedback

I got the answer.Its working for sunday only.But I dont know how to make it for another days

// Define a constant of 1 day in seconds

define(ONE_DAY, 86400); date_default_timezone_set('America/New_York');

// Accepts two timestamps, start and end 
// Returns an array of timestamps that fall on a sunday 
function sundays_in_range($start, $end) {    
	echo date('N', $start);
	echo "<br/>";                     
    $days_until_sunday = date('w', $start) > 0 ? 7 - date('w', $start) : 0; 

    $date = $start + (ONE_DAY * $days_until_sunday); 
    $sundays = array(); 
    while ($date <= $end) { 
        array_push($sundays, $date); 
        $date += (7 * ONE_DAY); 
    } 
    return $sundays; 
} 

// Calculate some example dates. Today, and 30 days from now 
$start = time($start); 
$end = time($end) + (30 * ONE_DAY); 
echo ONE_DAY;
echo "<br/>";
 $count=0;
// Loop and output Y-m-d 
foreach (sundays_in_range($start, $end) as $sunday)
{
print "<option>".date("Y-m-d", $sunday)."</option><br/>";
 $count++;
 }

echo  $count;

?>

link|improve this answer
feedback

The answer by w35I3y was almost correct, but I was getting errors using that function. This function correctly calculates the number of Mondays or any specific day between two given dates:

/** 
* Counts the number occurrences of a certain day of the week between a start and end date
* The $start and $end variables must be in UTC format or you will get the wrong number 
* of days  when crossing daylight savings time
* @param - $day - the day of the week such as "Monday", "Tuesday"...
* @param - $start - a UTC timestamp representing the start date
* @param - $end - a UTC timestamp representing the end date
* @return Number of occurences of $day between $start and $end
*/
function countDays($day, $start, $end)
{        
    //get the day of the week for start and end dates (0-6)
    $w = array(date('w', $start), date('w', $end));

    //get partial week day count
    if ($w[0] < $w[1])
    {            
        $partialWeekCount = ($day >= $w[0] && $day <= $w[1]);
    }else if ($w[0] == $w[1])
    {
        $partialWeekCount = $w[0] == $day;
    }else
    {
        $partialWeekCount = ($day >= $w[0] || $day <= $w[1]);
    }

    //first count the number of complete weeks, then add 1 if $day falls in a partial week.
    return floor( ( $end-$start )/60/60/24/7) + $partialWeekCount;
}

Example Usage:

$start = strtotime("tuesday UTC");    
$end = strtotime("3 tuesday UTC");       
echo date("m/d/Y", $start). " - ".date("m/d/Y", $end). " has ". countDays(0, $start, $end). " Sundays";

Outputs something like: 09/28/2010 - 10/19/2010 has 3 Sundays.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.