So I have a script that returns the number of weeks in a particular month and year. How can I take a specific day from that month and determine if it is part of week 1,2,3,4 or 5 of that month?
|
|
The most frustrating thing I have ever tried to get working - but here it is!
|
|||||||||||||||
|
Hello all i have been struggling for the whole day trying to figure this code out, i finally figured it out so i thought i would share it with you all. all you need to do is put a time stamp into the function and it will return the week number back to you. thanks |
|||
|
|
|
I realize I am a little late to the game, but thought I would throw out more of a mathematical solution...
and a test for it
Output
note
to the appropriate value for the day in question. |
|||
|
|
This is the snippet that I made to fulfill my requirements for the same. Hope this will help you.
} |
|||
|
|
|
This is probably not a good way to do this but it's my first thought and I'm really tired. Put all your dates into an array. The date object must have a day name (Monday). Create a method that searches the array and when ever you hit a Sunday you add 1 to a week counter. Once you find the date you're looking for return the week counter. That is the week the day falls in of the year. For the week in the month you have to reset the week counter every time you get to the last day in each month. |
|||||||||||||
|
|
there is a problem with this method. if the passing date (Lets say 2012/01/01 which is a Sunday) and "$rollover" day is "Sunday", then this function will return 2. where its actually is 1'st week. i think i have fixed it in following function. please add comments to make it better.
|
|||
|
|
|
I found a easy way to determine what week of the month today is in, and it would be a small change to have it work on any other date. I'm adding my two cents in here as I think my way is much more compact then the methods listed.
and $ddate contains the week number you could modify it like so
and it would return what week of the month any date you give it is. what it does is first find the number of days from the start of the week to the first of the month. then adds that on to the current date then divides the new date by 7 and that will give you how many weeks have passed since the start of the month, including a decimal place for the part of the the current week that has passed. so what I do next is round down that number, then compare the rounded down version to the original if the two match your at the end of the week so it's already in the number. if they don't then just add one to the rounded down number and voila you have the current week number. |
|||
|
|
http://thecodecave.com/2011/06/01/find-what-week-of-the-month-a-date-is-in-php/ suggests For a specific day (instead of now):
Please note that |
|||
|
|
|
Thought I'd share my function as well. This returns an array of weeks. Every week is an array with weeks day (0..6) as key and months day (1..31) as value. Function assumes that week starts with Sunday. Enjoy!
|
||||
|
|
|
I think I found an elegant solution
|
|||
|
|
|
Python: Number of the Week in a Month This is a worked example in Python - should be simple to convert. |
|||
|
|
|
For a Monday-Sunday (ISO 8601) week (or, if you simply don't care), you can do this in one line:
For anything else, (e.g. a Sunday-Saturday week), you just need to tweak $date inside the function:
(Thanks to http://forums.whirlpool.net.au/archive/704023) NOTE: You may run into some issues at the end of the year (e.g. around 12/31, 1/1, etc.) Read more here: http://forums.whirlpool.net.au/archive/704023 |
||||
|
|
|
Srahul07's solution works perfectly... If you abide by the Monday-Sunday week system! Here in 'murica, non-business folk tend to go by Sunday-Saturday being a week, so May 1, 2011 is week 1 and May 2, 2011 is still week 1. Adding the following logic to the bottom of his function, right before it returns $week will convert this to a Sunday -> Monday system:
That seems to work for all cases, months starting with Sundays, January of 2011, 2012, and 2013, and all sorts of other random dates I plugged in. Thanks for that function, S. Rahul. Sadly, after all my work to get that function up and running, I learn that my users use a more ridiculous system wherein the concept of "weeks" is too complicated, so they simply number the occurrences of a day in the month and ignore whatever "week" we're in. A brute-force system of counting how many Fridays, etc. have already occurred in the month is the only solution I could come up with, because that's all their logic is. T_T |
||||
|
|
|
My 5 cents:
|
|||
|
|
