Funkcje daty i czasu
PHP Manual

date_parse_from_format

(PHP 5 >= 5.3.0)

date_parse_from_formatGet info about given date

Opis

array date_parse_from_format ( string $format , string $date )

Returns associative array with detailed info about given date.

Parametry

format

Format accepted by date() with some extras.

date

String representing the date.

Zwracane wartości

Returns associative array with detailed info about given date.

Przykłady

Przykład #1 date_parse_from_format() example

<?php
$date 
"6.1.2009 13:00+01:00";
print_r(date_parse_from_format("j.n.Y H:iP"$date));
?>

Powyższy przykład wyświetli:

Array
(
    [year] => 2009
    [month] => 1
    [day] => 6
    [hour] => 13
    [minute] => 0
    [second] => 0
    [fraction] => 
    [warning_count] => 0
    [warnings] => Array
        (
        )

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

    [is_localtime] => 1
    [zone_type] => 1
    [zone] => -60
    [is_dst] => 
)


Funkcje daty i czasu
PHP Manual