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?
|
up vote
0
down vote
favorite
|
|||
|
|
|
up vote
2
down vote
|
You could create a function that uses strtotime() recursively to count the number of days. Since
Hopefully this is something you're looking for :) |
|||
|
|
|
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(ONE_DAY, 86400); date_default_timezone_set('America/New_York');
?> |
||
|
|
|
up vote
0
down vote
|
no loops and no recursivity
|
|||
|
|