rest_parse_date()WP 4.4.0

Parses an RFC3339 time into a Unix timestamp.

Хуков нет.

Возвращает

int. Unix timestamp.

Использование

rest_parse_date( $date, $force_utc );
$date(строка) (обязательный)
RFC3339 timestamp.
$force_utc(true|false)
Whether to force UTC timezone instead of using the timestamp's timezone.
По умолчанию: false

Список изменений

С версии 4.4.0 Введена.

Код rest_parse_date() WP 6.4.3

function rest_parse_date( $date, $force_utc = false ) {
	if ( $force_utc ) {
		$date = preg_replace( '/[+-]\d+:?\d+$/', '+00:00', $date );
	}

	$regex = '#^\d{4}-\d{2}-\d{2}[Tt ]\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|[+-]\d{2}(?::\d{2})?)?$#';

	if ( ! preg_match( $regex, $date, $matches ) ) {
		return false;
	}

	return strtotime( $date );
}