wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_gmt_from_date › WordPress Function

Seit1.2.0
Veraltetn/v
get_gmt_from_date ( $date_string, $format = 'Y-m-d H:i:s' )
Parameter: (2)
  • (string) $date_string The date to be converted, in the timezone of the site.
    Erforderlich: Ja
  • (string) $format The format string for the returned date. Default 'Y-m-d H:i:s'.
    Erforderlich: Nein
    Standard: 'Y-m-d H:i:s'
Gibt zurück:
  • (string) Formatted version of the date, in UTC.
Definiert in:
Codex:

Given a date in the timezone of the site, returns that date in UTC.

Requires and returns a date in the Y-m-d H:i:s format. Return format can be overridden using the $format parameter.


Quellcode

function get_gmt_from_date( $date_string, $format = 'Y-m-d H:i:s' ) {
	$datetime = date_create( $date_string, wp_timezone() );

	if ( false === $datetime ) {
		return gmdate( $format, 0 );
	}

	return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( $format );
}