php中挺好用的strtotime方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php中挺好用的strtotime方法

php中挺好用的strtotime方法

 2011/12/21 9:08:41  jackyrong  http://jackyrong.iteye.com  我要评论(0)
  • 摘要:在PHP中,经常要对日期进行计算,比如要计算一个月前的日期,那么其实最快的方法是用strtotime,其功能很丰富,如下:echostrtotime("now"),"\n";echostrtotime("10September2000"),"\n";echostrtotime("+1day"),"\n";echostrtotime("+1week"),"\n";echostrtotime("+1week2days4hours2seconds"),"\n";echostrtotime
  • 标签:方法 PHP
  在PHP中,经常要对日期进行计算,比如要计算一个月前的日期,那么其实最快的方法
是用strtotime,其功能很丰富,如下:


echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";


  看到没 +1 day  +1 week,马上求出1天后,1个星期后的日期了,
求1个月前,可以:
echo date('Y-m-d', strtotime('1 month ago'))

  因此,判断是否一个月前,可以
if  strtotime($my_date) < strtotime('1 month ago'))
上一篇: linux curl 下一篇: php制作缩略图图片
发表评论
用户名: 匿名