>  기사  >  백엔드 개발  >  php中挺好用的strtotime步骤

php中挺好用的strtotime步骤

WBOY
WBOY원래의
2016-06-13 13:17:21777검색

php中挺好用的strtotime方法
  在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)
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.