up vote 0 down vote favorite

I hava start date and end date.

I need to find out the day that is Sunday or Monday etc dependant upon user click on checkbox.

How can I find/calculate that in PHP?

link|flag

40% accept rate

3 Answers

up vote 2 down vote

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|flag
up vote 0 down vote

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|flag
up vote 0 down vote

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); // SU
echo number_of_days(1, $start, $end); // MO
echo number_of_days(2, $start, $end); // TU
echo number_of_days(3, $start, $end); // WE
echo number_of_days(4, $start, $end); // TH
echo number_of_days(5, $start, $end); // FR
echo number_of_days(6, $start, $end); // SA
?>
link|flag

Your Answer

get an OpenID
or
never shown

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