QQ咨询 官方微信

添加微信好友

官方小程序

百度小程序

微信小程序

头条小程序

关于我们

PHP基础

php时间戳的加减

 admin  2022-08-07 07:18:57
php当前时间增加天数的实现方法:
1、通过“date('Y-m-d',strtotime("+1 day"))”方法将当前时间增加一天;
2、使用“strtotime("+1 month")”方法将当前时间增加一月。
例:
  1. 当前时间增加一天: echo date('Y-m-d',strtotime("+1 day")) 
  2. 当前时间增加一月: strtotime("+1 month"
  3. 当前时间增加一年: strtotime("+1 year"
  4. 当前时间增加一秒: strtotime("+1 seconds"
  5. 已有时间增加一天:$d='2012-10-11'
  6. eccho date('Y-m-d',strtotime("{$d} +1 day")); 
  7. echo strtotime( 'yesterday '
  8. echo date( "Ymd ",strtotime( 'last week ')); 

php固定时间加减方法:

  1. $a = time();//获取当前时间戳 
  2. $b = strtotime("+7days", $a);//获取在以$a时间戳为基础的七天后的时间戳 
  3. //注意,以上获取的都是时间戳,strtotime()也要用时间戳,若想转转为阁下下用的那种显示方式,应该再用date函数转换 
  4. echo date("Y-m-d", $a); 
  5. echo "</br>"
  6. echo date("Y-m-d", $b); 

原来的时间加上分钟数

  1. $a = time();//获取当前时间戳 
  2. $b = strtotime("+20 minute", $a);//获取在以$a时间戳为基础的20分钟后的时间戳 
  3.  //注意,以上获取的都是时间戳,strtotime()也要用时间戳,若想转转为阁下下用的那种显示方式,应该再用date函数转换 
  4. echo date("Y-m-d H:i:s", $a); 
  5. echo "</br>"
  6. echo date("Y-m-d H:i:s", $b); 

如果是参数则写成:

  1. strtotime("+{$num} day",$a) 

 

¥ 打赏
×
如果您觉得文章帮助了您就打赏一下吧
非常感谢你的打赏,我们将继续分享更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏

本文《php时间戳的加减》发布于石头博客文章,作者:admin,如若转载,请注明出处:https://www.pweb123.com/html/php/892.html,否则禁止转载,谢谢配合!

文章点评

我来说两句 已有0条评论
点击图片更换

添加微信好友

添加微信好友

微信小程序

百度小程序