Описание
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).
Замечание: Для Windows-платформ эта функция не реализована.
Список параметров
- 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()).
For more information about the format options, read the strftime() page.
Возвращаемые значения
Returns an array, or FALSE on failure.
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 |
Примеры
Пример #1 strptime() example
<?php
$format = '%d/%m/%Y %H:%M:%S';
$strf = strftime($format);
echo "$strf\n";
print_r(strptime($strf, $format));
?>
Результатом выполнения данного примера будет что-то подобное:
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] => )
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с датой и временем
- Дата и Время
- checkdate
- date_add
- date_create_from_format
- date_create_immutable_from_format
- date_create_immutable
- date_create
- date_date_set
- date_default_timezone_get
- date_default_timezone_set
- date_diff
- date_format
- date_get_last_errors
- date_interval_create_from_date_string
- date_interval_format
- date_isodate_set
- date_modify
- date_offset_get
- date_parse_from_format
- date_parse
- date_sub
- date_sun_info
- date_sunrise
- date_sunset
- date_time_set
- date_timestamp_get
- date_timestamp_set
- date_timezone_get
- date_timezone_set
- date
- getdate
- gettimeofday
- gmdate
- gmmktime
- gmstrftime
- idate
- localtime
- microtime
- mktime
- strftime
- strptime
- strtotime
- time
- timezone_abbreviations_list
- timezone_identifiers_list
- timezone_location_get
- timezone_name_from_abbr
- timezone_name_get
- timezone_offset_get
- timezone_open
- timezone_transitions_get
- timezone_version_get
Коментарии
Best replacement for this function seems to be "date_parse". Note that the returned array keys change from things like "tm_year" to simpler names like "year". Fwiw, "date_parse_from_format" did not look like a good replacement to me---even though I updated my format string ("i" is used for minute instead of "M"), it returned errors for a straightforward format ("%Y-%m-%d %H:%i:%S").