当前位置:首页 > PHP教程 > php日期 > 列表

PHP使用GETDATE获取当前日期时间作为一个关联数组的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-17 10:59:13 浏览: 评论:0 

这篇文章主要介绍了PHP使用GETDATE获取当前日期时间作为一个关联数组的方法,实例分析了php中GETDATE函数使用技巧,需要的朋友可以参考下

本文实例讲述了PHP使用GETDATE获取当前日期时间作为一个关联数组的方法,分享给大家供大家参考,具体分析如下:

PHP GETDATE函数是用来获得当前的日期和时间,从操作系统或一个关联数组转换成UNIX风格的日期整数。

语法格式如下

array getdate ();

array getdate (integer $Time);

参数如下:

  1. Arguments 
  2.  
  3. $Time 
  4. The number of seconds since midnight before January 1, 1970. (UNIX style.) 
  5. Default 
  6. The default is the current date and time from the operating system.) 
  7.  
  8. The return value is an associative array containing: 
  9.   
  10. mon The month of the year as a number (1..12) 
  11. mday The day of the month (1..31) 
  12. year The year (4 digits) 
  13. hours The hour of the day (0..23) 
  14. minutes The minutes of the hour (0..59) 
  15. seconds The seconds of the minute (0..59) 
  16. month The month of the year as a word (January..December) 
  17. yday The day of the year (0..365) 
  18. wday The day of the week as a number (0..6) 
  19. weekday The day of the week as a word (Sunday..Saturday) 
  20. 0 Seconds since midnight before January 1, 1970 

下面是一个使用范例:

  1. <?php 
  2. $Now = getdate(); 
  3. foreach ($Now as $Key => $Value) { 
  4.  echo "$Key => $Value\n"
  5. ?> 

输出结果如下:

  1. seconds => 59 
  2. minutes => 14 
  3. hours => 7 
  4. mday => 26 
  5. wday => 6 
  6. mon => 12 
  7. year => 2009 
  8. yday => 359 
  9. weekday => Saturday 
  10. month => December 
  11. 0 => 1261811699 

希望本文所述对大家的php程序设计有所帮助。

Tags: GETDATE PHP获取当前日期时间

分享到: