php日期赋值

$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));

$data = date('Y-m-d', $tomorrow);


这二种方法是等同的。


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

你可能感兴趣的:(php日期赋值)