从PHP的date()函数获取日期

时间:2011-07-14 09:42:27

标签: php date

如何使用PHP的date()函数来获取第二天的日期?我可以很容易地得到当天的日期。例如,如果今天是7月14日,我想要7月15日。

5 个答案:

答案 0 :(得分:4)

date('j F', strtotime('+1 day'));

答案 1 :(得分:2)

date('y-m-d', strtotime('+1 day'));

答案 2 :(得分:1)

您可以使用strtotime功能

strtotime("+1 day"); // will give u the next day

答案 3 :(得分:1)

如果你坚持约会:

日期('...您的格式......',时间()+ 60 * 60 * 24); // 错误;见编辑证明

然后你有一个明天的时间戳,你可以把它变成一个格式化的日期。

修改

关于添加的批评者(60 * 60 * 24)。

for($i = 0; $i < 4*365; $i++)
{
   $t = time() + $i*60*60*24;

  if(strtotime("+1 day", $t) != ( $t + (60*60*24) ) )
  {
    echo "x: ".$t,PHP_EOL;
  }
}

表明,添加60 * 60 * 24确实是不够的。

x: 1319882214
x: 1332583014
x: 1351331814
x: 1364637414
x: 1382781414
x: 1396087014
x: 1414231014
x: 1427536614

答案 4 :(得分:1)

<?php

$timestamp = time();
$tomorrow = date("j F", $timestamp+3600*24);

?>