如果要在PHP中执行此操作:
// 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));如果要在MySQL中添加日期:
-- replace CURRENT_DATE with the date you want to add one day toSELECT DATE_ADD(CURRENT_DATE, INTERVAL 1 DAY);



