PHP求时间间隔 n天、周、月、年后的时间
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2016-07-25 08:46:10
original
1306 Les gens l'ont consulté
-
date_default_timezone_set('PRC'); // 设置时区
-
- $date1 = strtotime('2015-01-01'); //把日期转换成时间戳
- $date2 = time(); //取当前时间的时间戳
-
- $nowtime=strftime("%Y-%m-%d",$date2); //格式化输出日期
-
- $days=round(($date1-$date2)/3600/24); //四舍五入
-
- echo "今天是".$nowtime."";
- echo "
距".strftime("%Y-%m-%d ",$date1)."还有".$days."天
";
-
- echo "当前时间 " . date("Y-m-d h:i:s",strtotime("now")). "
";
- echo "后天时间 " . date("Y-m-d h:i:s",strtotime("+2 day")). "
";
- echo "下周时间 " . date("Y-m-d h:i:s",strtotime("+1 week")). "
";
- echo "下月时间 " . date("Y-m-d h:i:s",strtotime("+1 month")). "
";
- echo "明年时间 " . date("Y-m-d h:i:s",strtotime("+1 year")). "
";
- echo "下周2天4小时2秒后的时间 " . date("Y-m-d h:i:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "
";
- echo "下周四时间 " . date("Y-m-d h:i:s",strtotime("next thursday")). "
";
- echo "上周一时间 " . date("Y-m-d h:i:s",strtotime("last monday")). "
";
- echo "2015-01-04 3天后的时间 " . date("Y-m-d h:i:s",strtotime("+3 day",strtotime('2015-01-04')));
-
- ?>
复制代码
|
PHP
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11
Derniers numéros
-
2025-03-19 14:08:27
-
2025-03-19 14:07:29
-
2025-03-19 14:06:28
-
2025-03-19 14:05:31
-
2025-03-19 14:04:29