get tomorrow date in php – How To Get Yesterday And Tomorrow Date In Php?

get tomorrow date in php – Getting tomorrow’s date using the strtotime function. Simple method how to get the date of tomorrow, yesterday, etc.

get tomorrow date in php

Get tomorrow’s date using PHP, Get tomorrows date from date – Get date of tomorrow, day after, yesterday, day before using PHP. Simple method how to get the date of tomorrow, yesterday, etc. is to use:

Syntax for getting tomorrow using php


$tomorrow = date( "Ymd", strtotime( "+1 days" ) );
$dayaftertomorrow = date( "Ymd", strtotime( "+2 days" ) );
$yesterday = date( "Ymd", strtotime( "-1 days" ) );
$daybeforeyesterday = date( "Ymd", strtotime( "-2 days" ) );

Syntax for getting yesterday using php


tomorrow date php

$currDtObj = date("Y-m-d", strtotime('tomorrow'));
//or 
$currDtObj = date("Y-m-d", strtotime("+1 day"));

//for DateTime
  
$currDtObj = new DateTime('tomorrow');
echo $currDtObj->format('Y-m-d H:i:s');

//or

$currDtObj = new DateTime('2013-01-22');
$currDtObj->modify('+1 day');
echo $currDtObj->format('Y-m-d H:i:s');

tomorro date php

$currDtObj = date("Y-m-d", strtotime('tomorrow'));
or 
$currDtObj = date("Y-m-d", strtotime("+1 day"));

for DateTime
  
$currDtObj = new DateTime('tomorrow');
echo $currDtObj->format('Y-m-d H:i:s');

or

$currDtObj = new DateTime('2013-01-22');
$currDtObj->modify('+1 day');
echo $currDtObj->format('Y-m-d H:i:s');

php tomorrow

$currDtObj = new DateTime('tomorrow');
echo $currDtObj->format('Y-m-d');

don’t Miss : Tomorrow Date In Php

I hope you get an idea about get tomorrow date in php.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment