当前位置:Gxlcms > PHP教程 > strtotime使用

strtotime使用

时间:2021-07-01 10:21:17 帮助过:16人阅读

获取当前时间或者任一时间加上任一天数 并转换成日期格式
1、
$date = date('Y-m-d H:i:s',strtotime('+4 days));
//说明:strtotime 的第二个参数为空,默认取值 time();
2、
$time = strtotime(date('2015-03-01 H:i:s));//指定任一时间并转换成时间戳

$date= date("Y-m-d H:i:s", strtotime("+5 days", $time));//在指定时间加上任意天数并转换成日期格式

以上就介绍了strtotime 使用,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行