假设我输入了一个字符串"2007-02-28",那么,我能写出最简单的代码是"2007-03-01"什么?现在,我只是在使用strtotime(),然后添加24*60*60,然后使用date(),但是只是想知道是否有一种更干净,更简单或更聪明的方法。
"2007-02-28"
"2007-03-01"
strtotime()
24*60*60
date()
一种干净的方法 是 使用strtotime()
$date = strtotime("+1 day", strtotime("2007-02-28")); echo date("Y-m-d", $date);
会给你2007-03-01