FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP getdate() Function

PHP Date/Time PHP Date/Time Reference

Example

Return date/time information of the current local date/time:

<?php
print_r(getdate());
?>
Run example »

Definition and Usage

The getdate() function returns date/time information of a timestamp or the current local date/time.


Syntax

getdate(timestamp);

Parameter Description
timestamp Optional. Specifies an integer Unix timestamp. Default is the current local time (time())

Technical Details

Return Value: Returns an associative array with information related to the timestamp:
  • [seconds] - seconds
  • [minutes] - minutes
  • [hours] - hours
  • [mday] - day of the month
  • [wday] - day of the week
  • [mon] - month
  • [year] - year
  • [yday] - day of the year
  • [weekday] - name of the weekday
  • [month] - name of the month
  • [0] - seconds since Unix Epoch
PHP Version: 4+

PHP Date/Time PHP Date/Time Reference