wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_date_from_gmt › WordPress Function

Depuis1.2.0
Dépréciéen/a
get_date_from_gmt ( $date_string, $format = 'Y-m-d H:i:s' )
Paramètres: (2)
  • (string) $date_string The date to be converted, in UTC or GMT timezone.
    Requis: Oui
  • (string) $format The format string for the returned date. Default 'Y-m-d H:i:s'.
    Requis: Non
    Défaut: 'Y-m-d H:i:s'
Retourne:
  • (string) Formatted version of the date, in the site's timezone.
Défini(e) dans:
Codex:

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

Requires a date in the Y-m-d H:i:s format. Default return format of 'Y-m-d H:i:s' can be overridden using the $format parameter.


Source

function get_date_from_gmt( $date_string, $format = 'Y-m-d H:i:s' ) {
	$datetime = date_create( $date_string, new DateTimeZone( 'UTC' ) );

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

	return $datetime->setTimezone( wp_timezone() )->format( $format );
}