当前位置 : 主页 > 编程语言 > java >

在当前时间上增加几天或者减少几天…

来源:互联网 收集:自由互联 发布时间:2022-07-22
?php //字符串转成日期的函数 $t = "2012-10-11 17:27:00"; // 当前时间戳 //$nowTime = strtotime('2012-10-11 16:30:00'); $nowTime = strtotime($t); //$t = time(); // 当前时间戳//$t = strtotime("+30 days", time()); // 30天后的


<?php
//字符串转成日期的函数
$t = "2012-10-11 17:27:00"; // 当前时间戳
//$nowTime = strtotime('2012-10-11 16:30:00'); $nowTime = strtotime($t);
//$t = time(); // 当前时间戳//$t = strtotime("+30 days", time()); // 30天后的时间
//echo date("Y-m-d", strtotime("+30 days", time())); // 格式化日期
echo date("Y-m-d", strtotime("+30 days", $nowTime )); // 格式化日期 ?>
输出格式:2012-09-19
减少几小时
//echo date("Y-m-d H:i:s", strtotime("-1 hour", time())); // 格式化日期
echo date("Y-m-d H:i:s", strtotime("-1 hour", $nowTime )); // 格式化日期 【本文转自:香港高防服务器 http://www.558idc.com/hkgf.html 复制请保留原URL】
上一篇:Adobe Photoshop CS6 调出动画窗口
下一篇:没有了
网友评论