Return an associative array with detailed information about a given date.
<?php print_r(date_parse(“2013-05-01 12:30:45.5”)); ?> |
The date_parse() function returns an associative array with detailed information about a specified date.
date_parse(date) |
Parameter |
Description |
date |
Required. Specifies a date in a format accepted by |
Return Value: |
Returns an associative array containing information about the parsed date on success. FALSE on failure |
PHP Version: |
5.2+ |