PHP
Referenzliste
date_parse_from_format
Datums- und Zeit-Funktionen
Befehl:
array date_parse_from_format ( string $format , string $date )
Parameter-Liste:
Beschreibung | |
---|---|
Format accepted by DateTime::createFromFormat(). | |
Eine Variable Liste von Arrays zu vergleichen. |
Rückgabewerte:
Zurückgabe assoziatives Array mit detaillierten Infos zu bestimmten Datum.
Beschreibung:
Liefert assoziatives Array mit detaillierten Infos zu bestimmten Datum.
Aktiv in Version:
(PHP 5 >= 5.3.0, PHP 7)
Siehe auch:
Gibt neues DateTime-Objekt formatiert nach dem Format angegeben
Prüft ein Gregorianisches Datum auf Gültigkeit
date_parse_from_format() - Beispiel:
Eingabe:
<?php $date = "6.1.2009 13:00+01:00"; print_r(date_parse_from_format("j.n.Y H:iP", $date)); ?>
Ausgabe:
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] =>
)
(
[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] =>
)
Datums- und Zeit-Funktionen