strptime Parse a time/date generated with strftime &warn.deprecated.function-8-1-0; &reftitle.description; #[\Deprecated] arrayfalsestrptime stringtimestamp stringformat strptime returns an array with the timestamp parsed, or &false; on error. Month and weekday names and other language dependent strings respect the current locale set with setlocale (LC_TIME). &reftitle.parameters; timestamp (string) The string to parse (e.g. returned from strftime). format (string) The format used in timestamp (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. &reftitle.returnvalues; Returns an array&return.falseforfailure;. The following parameters are returned in the array 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 timestamp part which was not recognized using the specified format
&reftitle.changelog; &Version; &Description; 8.1.0 This function has been deprecated. Use date_parse_from_format instead (for locale-independent parsing), or IntlDateFormatter::parse (for locale-dependent parsing) &reftitle.examples; <function>strptime</function> example ]]> &example.outputs.similar; 19 [tm_min] => 54 [tm_hour] => 15 [tm_mday] => 3 [tm_mon] => 9 [tm_year] => 104 [tm_wday] => 0 [tm_yday] => 276 [unparsed] => ) ]]> &reftitle.notes; ¬e.no-windows; 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. "tm_sec" includes any leap seconds (currently upto 2 a year). For more information on leap seconds, see the Wikipedia article on leap seconds. &reftitle.seealso; IntlDateFormatter::parse DateTime::createFromFormat checkdate strftime date_parse_from_format