$timestamp=strtotime('1 hour',time()-3600);echo$timestamp;// 输出:当前时间戳 - 3600秒 返回值 如果转换成功,则返回一个Unix时间戳。如果转换失败,则返回false。 注意事项 strtotime()函数是时区敏感的。在使用该函数之前最好先设置了时区。可以使用date_default_timezone_set()函数进行设置。
“-1 day” “+1 week” “-1 week” “+1 month” “-1 month” “+1 year” “-1 year” “1 day ago” “1 week ago” “1 month ago” “1 year ago” “1 hour ago” “1 minute ago” “1 second ago” “1 hour from now” “1 minute from now” “1 second from now” 注...
<?phpechostrtotime('+1 hour');?> 一小时之前 <?phpechostrtotime('-1 hour');?> 很灵活,很方便。
echo strtotime('+1 hour'); ?> 1. 2. 3. 一小时之前 <?php echo strtotime('-1 hour'); ?> 1. 2. 3. 很灵活,很方便。
1 hour ago:表示当前时间往前减一小时。 strtotime() 函数的使用示例: // 解析固定格式的日期字符串 $timestamp = strtotime("2022-08-15"); echo $timestamp; // 输出:1659916800 (2022年8月15日的Unix时间戳) // 解析带相对时间的字符串 $timestamp = strtotime("+1 day"); echo $timestamp; // ...
hour: an hour 小时 minute : a minute 分钟 min : same as minute 同“minute” second : a second 秒 sec : same as second 同“second” 3.相关和顺序说明: +n/-n :以当前时间算,加个减指定的时间,比如”+1 hour”是指当前时间加一小时 ...
hour: an hour 小时 minute : a minute 分钟 min : same as minute 同“minute” second : a second 秒 sec : same as second 同“second” 3.相关和顺序说明: +n/-n :以当前时间算,加个减指定的时间,比如”+1 hour”是指当前时间加一小时 ...
+1hour'));// 当前时间戳+1天echodate('Y-m-d H:i:s',strtotime('+1day'));// 当前时间戳+1周echodate('Y-m-d H:i:s',strtotime('+1week'));// 当前时间戳+1月echodate('Y-m-d H:i:s',strtotime('+1month'));// 当前时间戳+1年echodate('Y-m-d H:i:s',strtotime('+1...
date('Y-m-d H:i:s',strtotime("+1 day +1 hour +1 minute"); 可以随便自由组合,以达到任意输出时间的目的 注:该方法之针对1970年以后试用,也就是时间戳的适用范围。 2.给指定时间加一天?一小时?.。。。 echo date("Y-m-d",strtotime("+1 month",strtotime("2012-02-04"))); 结果为...