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

php时间戳函数用法总结

程序员文章站 2022-05-15 18:27:55
...
  1. strtotime(”2009-1-22″)
  2. echo strtotime(”2009-1-22″) 结果:1232553600
复制代码

说明:返回2009年1月22日0点0分0秒时间戳

二,php时间戳函数获取英文文本日期时间 便于比较,使用date将当时间戳与指定时间戳转换成系统时间

1)打印明天此时的时间戳strtotime(”+1 day”)

  1. //时间戳转日期
  2. $date_time_array = getdate(1297845628); //1311177600 1316865566
  3. $hours = $date_time_array["hours"];
  4. $minutes = $date_time_array["minutes"];
  5. $seconds = $date_time_array["seconds"];
  6. $month = $date_time_array["mon"];
  7. $day = $date_time_array["mday"];
  8. $year = $date_time_array["year"];
  9. echo "year:$year\nmonth:$month\nday:$day\nhour:$hours\nminutes:$minutes\nseconds:$seconds\n";
  10. //正常日期转时间戳
  11. echo mktime(0, 0, 0, 9, 18, 2011) . "\n";
  12. echo mktime(0, 0, 0, 9, 25, 2011) . "\n";
  13. /*
  14. time();
  15. 是获得当前时间,但获得的是一整型
  16. */
  17. //可以对此进行格式化
  18. echo "time()显示年月日时分秒:" . date("Y-m-d H:i:s", time()) . "\n";
  19. //这样连时,分秒一起显示
  20. echo "time()只显示年月日:" . date("Y-m-d ", time()) . "\n"; //只年示年月日
  21. echo "时间戳格式化:" . date("Y-m-d H:i:s", 1297845628) . "\n"; //直接使用时间戳
  22. /* vim: set ts=4 sw=4 sts=4 tw=100 noet: */
  23. ?>
复制代码