Questions tagged [relative-date]
48 questions
-1
votes
2 answers
15th of next month with using strtotime only in PHP
I need to retrieve the 15th day of the next month with using a single strtotime call only with a single literal string argument.
I tried the following argument values:
strtotime("15th of next month")
strtotime("first day of next month + 14…

Meglio
- 1,646
- 2
- 17
- 33
-1
votes
1 answer
How to define the relative time for a repetitive yearly interval?
I'm looking for a way to filter for events that happened between previous September (1st) and upcoming September (1st) every year. Since the filter is already part of an existing piece of code I can ony add a fixed date (timestamp) or use a relative…

Neograph734
- 1,714
- 2
- 18
- 39
-1
votes
1 answer
Microtime to Relative Date Conversion
I am receiving the following value from a database which is a millsecond (microtime) value
1369057622.4679
I would like to output this in PHP to be
3 Day's ago
Essentially reading the milliseconds value and converting it to a relative date…

Justin Erswell
- 688
- 7
- 42
- 87