Answers for "get a date of next day php"

PHP
1

tomorro date php

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

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

or

$datetime = new DateTime('2013-01-22');
$datetime->modify('+1 day');
echo $datetime->format('Y-m-d H:i:s');
Posted by: Guest on June-10-2020
1

php strtotime 1 day ago from

date('Y-m-d', strtotime('+1 day', strtotime($date)))
Posted by: Guest on July-13-2020

Browse Popular Code Answers by Language