网站地图    收藏   

主页 > php专栏 > php日期 >

php 时间数据转换为时间戳代码 - php日期

来源:自学PHP网    时间:2014-11-30 11:50 作者: 阅读:

[导读] 要做时间数据转换为时间戳我们利用php教程自带函数,strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳 格式一 Fri Aug 05 12:19:04 +0800 2011strtotime(Fri Aug 05 1...

php 时间数据转换为时间戳代码

要做时间数据转换为时间戳我们利用php教程自带函数,strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳.

格式一 Fri Aug 05 12:19:04 +0800 2011

strtotime("Fri Aug 05 12:19:04 +0800 2011");

格式二 2011-02-01

strtotime("2011-02-01");

其它参考:

  1. <?php 
  2. echo(strtotime("now")); 
  3. echo(strtotime("3 October 2005")); 
  4. echo(strtotime("+5 hours")); 
  5. echo(strtotime("+1 week")); 
  6. echo(strtotime("+1 week 3 days 7 hours 5 seconds")); 
  7. echo(strtotime("next Monday")); 
  8. echo(strtotime("last Sunday")); 
  9. ?> 
  10. /* 
  11. 输出: 
  12. 1138614504 
  13. 1128290400 
  14. 1138632504 
  15. 1139219304 
  16. 1139503709 
  17. 1139180400 
  18. 1138489200 
  19. */ 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论