欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 日期操作 天数添1

程序员文章站 2022-05-27 16:26:05
...
php 日期操作 天数加1

?

?

#给定一个日期:
$s= '2012-05-28 14:23:43';

#在这个日期上加上1天 得到新日期

echo date('Y-m-d H:i:s',strtotime("$s +1 day"));

#输出 2012-05-29 14:23:43
4.strstotime()函数转化时间戳

echo(strtotime("now")); //1138614504
echo(strtotime("3 October 2005")); //1128290400
echo(strtotime("+5 hours")); //1138632504
echo(strtotime("+1 week")); //1139219304
echo(strtotime("+1 week 3 days 7 hours 5 seconds")); //1139503709
echo(strtotime("next Monday")); //1139180400
echo(strtotime("last Sunday")); //1138489200
?
php 日期操作 天数添1

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频