Home > Article > Backend Development > How to Get the Date Stamp for a Specific Weekday in PHP?
How to Retrieve Date Stamps for Specific Weekdays
You may encounter situations where you need to obtain the date stamp for a specific weekday, such as Monday, Tuesday, or Wednesday. This operation can be easily achieved using the strtotime() function.
Usage:
To calculate the date stamp for the next occurrence of a weekday, simply use the syntax:
strtotime('next [weekday]')
For instance, to get the date stamp for the next Tuesday, you would use:
$nextTuesday = strtotime('next tuesday');
Determining Past Occurrence:
Sometimes, you may need to know if the specified weekday has already occurred this week. This can be determined by comparing the week number of the calculated date stamp with the current week number.
Example:
<code class="php">$nextTuesday = strtotime('next tuesday'); $weekNo = date('W'); $weekNoNextTuesday = date('W', $nextTuesday); if ($weekNoNextTuesday != $weekNo) { // Past Tuesday } else { // Not yet past Tuesday }</code>
This approach allows you to differentiate between weekdays that have passed and those that are still to come in the current week.
The above is the detailed content of How to Get the Date Stamp for a Specific Weekday in PHP?. For more information, please follow other related articles on the PHP Chinese website!