PHP getdate() Function
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:
|
---|---|
PHP Version: | 4+ |
PHP Date/Time Reference