Beschreibung
$date
, string $format
) : array
strptime() returns an array with the
date
parsed, or FALSE
on error.
Month and weekday names and other language dependent strings respect the
current locale set with setlocale() (LC_TIME
).
Parameter-Liste
-
date
(string) -
The string to parse (e.g. returned from strftime()).
-
format
(string) -
The format used in
date
(e.g. the same as used in strftime()). Note that some of the format options available to strftime() may not have any effect within strptime(); the exact subset that are supported will vary based on the operating system and C library in use.For more information about the format options, read the strftime() page.
Rückgabewerte
Returns an arrayIm Fehlerfall wird FALSE
zurückgegeben..
parameters | Description |
---|---|
"tm_sec" | Seconds after the minute (0-61) |
"tm_min" | Minutes after the hour (0-59) |
"tm_hour" | Hour since midnight (0-23) |
"tm_mday" | Day of the month (1-31) |
"tm_mon" | Months since January (0-11) |
"tm_year" | Years since 1900 |
"tm_wday" | Days since Sunday (0-6) |
"tm_yday" | Days since January 1 (0-365) |
"unparsed" | the date part which was not
recognized using the specified format |
Beispiele
Beispiel #1 strptime() example
<?php
$format = '%d/%m/%Y %H:%M:%S';
$strf = strftime($format);
echo "$strf\n";
print_r(strptime($strf, $format));
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
03/10/2004 15:54:19 Array ( [tm_sec] => 19 [tm_min] => 54 [tm_hour] => 15 [tm_mday] => 3 [tm_mon] => 9 [tm_year] => 104 [tm_wday] => 0 [tm_yday] => 276 [unparsed] => )
Anmerkungen
Hinweis: Diese Funktion ist auf Windows-Plattformen nicht verfügbar.
Hinweis:
Internally, this function calls the strptime() function provided by the system's C library. This function can exhibit noticeably different behaviour across different operating systems. The use of date_parse_from_format(), which does not suffer from these issues, is recommended on PHP 5.3.0 and later.
Hinweis:
"tm_sec" includes any leap seconds (currently upto 2 a year). For more information on leap seconds, see the » Wikipedia article on leap seconds.
Hinweis:
Prior to PHP 5.2.0, this function could return undefined behaviour. Notably, the "tm_sec", "tm_min" and "tm_hour" entries would return undefined values.
Siehe auch
- checkdate() - Prüft ein Gregorianisches Datum auf Gültigkeit
- strftime() - Formatiere eine Zeit-/Datumsangabe gemäß dem Gebietsschema
- date_parse_from_format() - Get info about given date formatted according to the specified format
- DateTime::createFromFormat() - Parses a time string according to a specified format
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 30/01/2003, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/php-rf-strptime.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.