Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
就像今天是星期四,那么我想使用 php date() 函数显示星期五。例如,下面的代码将显示当前月份但该月的第二天。有效。<?php echo date("M "), date("d")+1 ?>
<?php echo date("M "), date("d")+1 ?>
所以我试图通过这个<?php echo date("l")+1, date("d")+1 ?>,它愚弄了我:(。
<?php echo date("l")+1, date("d")+1 ?>
看看strtotime。此外,l当使用date.
strtotime
l
date
像下面这样的东西应该做你想做的事:
date('l', strtotime('+1 day'))
以下表达式为您提供第二天:
date('l', time()+3600*24)