Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
568 views
in Technique[技术] by (71.8m points)

date - Add six months in php

I'm trying to get the month, six months out from the current date.

I've tried using:

date('d', strtotime('+6 month', time()));

But it doesn't seem to work, always returns 01. Is there a better way to do this?

Thank you!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I find working with DateTime much easier to use:

$datetime = new DateTime();
$datetime->modify('+6 months');
echo $datetime->format('d');

or

$datetime = new DateTime();
$datetime->add(new DateInterval('P6M'));
echo $datetime->format('d');

or in PHP version 5.4+

echo (new DateTime())->add(new DateInterval('P6M'))->format('d');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...