Answers for "php interval day value"

PHP
0

php interval day value

// replace time() with the time stamp you want to add one day to
$startDate = time();
date('Y-m-d H:i:s', strtotime('+1 day', $startDate));
Posted by: Guest on February-25-2022

Browse Popular Code Answers by Language