i have one date.
example : $date='2011-21-12';
data format :yyyy-dd-mm;
IF date is Saturday or Sunday.
if Saturday add 2 day to the given date.
if Sunday add 1 day to the given date. ?
|
In a single line of code:
If the day of week has a value greater than 5 (Monday = 1, Sat is 6 and Sun is 7) set $nextweekday to the YYYY-MM-DD value of the following Monday. Editing to add, because the date format may not be accepted, you would need to reformat the date first. Add the following lines above my code:
This will put the date in Y-m-d order so that strtotime can recognize it. |
||||
|
You can use the date and strtotime functions for this, like so:
|
|||
|
|
|
What about this:
|
|||
|
The DateTime object can be really helpful for anything like this. In this case.
If you want to get the date back in that format.
|
|||
|
|
The only reason i can think why this wouldnt work is strtotime not recognising that data format... |
|||
|
|
YYYY-DD-MM? – ajreal Feb 11 '11 at 13:44