P
P
Pisarev_OS2015-12-14 23:50:16
PHP
Pisarev_OS, 2015-12-14 23:50:16

How to calculate the days of the past week (function) PHP?

Please help me write a function so that, taking into account all the calendar nuances (leap year code, 28-30-31 days in a month, etc.), the number of posts written by a certain author in WP is counted for the WHOLE PAST WEEK.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey, 2015-12-15
@Pisarev_OS

$rangeStart = new \DateTime('Monday last week');
$rangeEnd = new \DateTime('Sunday last week')

php.net/manual/en/datetime.formats.relative.php
then we select posts between two dates.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question