当前位置:Gxlcms > PHP教程 > 我自己在用的php日期抓取

我自己在用的php日期抓取

时间:2021-07-01 10:21:17 帮助过:15人阅读

我自己在用的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. ?>

人气教程排行