<?php
// 当前时间戳 格式:2019-03-13 18:00:00
echo date('Y-m-d H:i:s', strtotime('now'));
// 当前时间戳+1秒
echo date('Y-m-d H:i:s', strtotime('+1second'));
// 当前时间戳+1分
echo date('Y-m-d H:i:s', strtotime('+1minute'));
// 当前时间戳+1小时
echo date('Y-m-d H:i:s', strtotime('+1hour'));
// 当前时间戳+1天
echo date('Y-m-d H:i:s', strtotime('+1day'));
// 当前时间戳+1周
echo date('Y-m-d H:i:s', strtotime('+1week'));
// 当前时间戳+1月
echo date('Y-m-d H:i:s', strtotime('+1month'));
// 当前时间戳+1年
echo date('Y-m-d H:i:s', strtotime('+1year'));
// 当前时间戳+12年,12月,12天,12小时,12分,12秒
echo date('Y-m-d H:i:s', strtotime('+12year 12month 12day 12hour 12minute 12second'));
$t = 1483967416; // 指定时间戳
echo $date = date('Y-m-d H:i:s', $t);
/*方法一*/
// 指定时间戳+1天
echo date('Y-m-d H:i:s', $t+1*24*60*60);
// 指定时间戳+1年
echo date('Y-m-d H:i:s', $t+365*24*60*60);
/*方法二*/
//$t是指定时间戳
// 指定时间戳+1天
echo date('Y-m-d H:i:s', strtotime("+1day", $t));
// 指定时间戳+1年
echo date('Y-m-d H:i:s', strtotime("+1year", $t));
转载原创文章请注明,转载自: ben - PHP 指定时间戳 加上指定秒、分钟、小时等 (https://www.benhailong.com/?p=599)
「如果你觉得对你有用,欢迎点击下方按钮对我打赏」
支付宝支付
微信支付