PHP date_parse() Function
Example
Return an associative array with detailed information about a specified date:
<?php
print_r(date_parse("2013-05-01 12:30:45.5"));
?>
Try it Yourself »
Definition and Usage
The date_parse() function returns an associative array with detailed information about a specified date.
Syntax
date_parse(date)
Parameter Values
Parameter | Description |
---|---|
date | Required. Specifies a date (in a format accepted by strtotime()) |
Technical Details
Return Value: | Returns an associative array containing information about the parsed date on success. FALSE on failure |
---|---|
PHP Version: | 5.2+ |
❮ PHP Date/Time Reference