PHP Doku:: Get info about given date formatted according to the specified format - function.date-parse-from-format.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatums- und zeitrelevante ErweiterungenDatum und UhrzeitDatum/Uhrzeit Funktionendate_parse_from_format

Ein Service von Reinhard Neidl - Webprogrammierung.

Datum/Uhrzeit Funktionen

<<date_offset_get

date_parse>>

date_parse_from_format

(PHP 5 >= 5.3.0)

date_parse_from_formatGet 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

format

Format accepted by DateTime::createFromFormat().

date

String representing the date.

Rückgabewerte

Returns associative array with detailed info about given date.

Beispiele

Beispiel #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));
?>

Das 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


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
voidless at qip dot ru
10.04.2009 14:56
Example of rewriting function for older PHP versions:

convert
April 8, 2009, 1:12 am
to
timestamp

<?php
function date2sql($str = ""){
$month_arr = array (
   
"January" => 1,
   
"February" => 2,
   
"March" => 3,
   
"April" => 4,
   
"May" => 5,
   
"June" => 6,
   
"July" => 7,
   
"August" => 8,
   
"September" => 9,
   
"October" => 10,
   
"November" => 11,
   
"December" => 12
);
preg_match('/([a-zA-Z]{3,9}) ([0-9]{1,2}), ([0-9]{4}),
([0-9]{1,2}):([0-9]{1,2}) ([ap])m/'
,$str,$matches2);
if (
$matches2[6]=="a") $hour = $matches2[4];
else
$hour = $matches2[4]+12;
if (
$hour==24) $hour=0;
return
mktime($hour,$matches2[5],0,
$month_arr[$matches2[1]],$matches2[2],$matches2[3]);
}
   
$time = date2sql("March 29, 2009, 12:12 pm");
    echo
"{$time}</br>\n";
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)