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?
|
feedback
|
|
You could create a function that uses strtotime() recursively to count the number of days. Since
Hopefully this is something you're looking for :) | ||||
feedback
|
|
no loops and no recursivity
| ||||
feedback
|
| ||||
|
feedback
|
|
I got the answer.Its working for sunday only.But I dont know how to make it for another days
define(ONE_DAY, 86400); date_default_timezone_set('America/New_York');
?> | |||
|
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:
Example Usage:
Outputs something like: 09/28/2010 - 10/19/2010 has 3 Sundays. | ||||
|
feedback
|