| Week of the Month |
|
I had need of a PHP code to tell me the current week of the month. If it's the first week of the month, I wanted it to set the string to 1, for example. Strangely, PHP's date() function doesn't have this; it only gives us the week of the entire year, but not the current month.
I found a couple sites after doing some Googling; but they all seemed to hugely over-complicate things. One was like an entire program designed around finding the week of the month. I rolled my eyes, and decided to do it myself.
Five minutes later, here is the code:
|
||