欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

我自己在用的php日期抓取

程序员文章站 2022-06-04 15:59:49
...
我自己在用的php日期抓取
  1. echo j7_getdate('Y-m-d','2010-11-15','+10 day');
  2. function j7_getdate($format,$time='now',$opt){
  3. return date("$format",strtotime("$time $opt"));
  4. }
  5. //輸出 2010-11-25
  6. //詳細 strtotime 使用方法
  7. /*
  8. echo strtotime("now"), "\n";
  9. echo strtotime("10 September 2000"), "\n";
  10. echo strtotime("+1 day"), "\n";
  11. echo strtotime("+1 week"), "\n";
  12. echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
  13. echo strtotime("next Thursday"), "\n";
  14. echo strtotime("last Monday"), "\n";
  15. */
  16. ?>
复制代码