
Druckansicht von http://www.php-homepage.de/manual/function.date-parse-from-format.php
date_parse_from_format(PHP 5 >= 5.3.0) date_parse_from_format — Get info about given date formatted according to the specified format Beschreibung
array date_parse_from_format
( string
$format
, string $date
)Returns associative array with detailed info about given date. Parameter-Liste
RückgabewerteReturns associative array with detailed info about given date. Beispiele
Beispiel #1 date_parse_from_format() example
<?phpDas oben gezeigte Beispiel erzeugt folgende 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] =>
)
Siehe auch
|