HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

date_parse

Description

The date_parse of Date / Time for PHP returns associative array with detailed info about given date.

Syntax

date_parse ( string $date ) : array

Parameters

date

Date in format accepted by strtotime().

Return

Returns array with information about the parsed date on success or FALSE on failure.

Examples

1

<?

$date = "2001-02-03 04:05:06.7";

$return = date_parse($date);

print_r($return);
Array
(
    [year] => 2001
    [month] => 2
    [day] => 3
    [hour] => 4
    [minute] => 5
    [second] => 6
    [fraction] => 0.7
    [warning_count] => 0
    [warnings] => Array
        (
        )

    [error_count] => 0
    [errors] => Array
        (
        )

    [is_localtime] => 
)

2

<?

$date = "2001-02-03 04:05:06.7 +1 year +1 month +1 week +1 day +1 hour +1 minute +1 second";

$return = date_parse($date);

print_r($return);
Array
(
    [year] => 2001
    [month] => 2
    [day] => 3
    [hour] => 4
    [minute] => 5
    [second] => 6
    [fraction] => 0.7
    [warning_count] => 0
    [warnings] => Array
        (
        )

    [error_count] => 0
    [errors] => Array
        (
        )

    [is_localtime] => 
    [relative] => Array
        (
            [year] => 1
            [month] => 1
            [day] => 8
            [hour] => 1
            [minute] => 1
            [second] => 1
        )

)