get_gmt_from_date

函数
get_gmt_from_date ( $string, $format = 'Y-m-d H:i:s' )
参数
  • (string) $string The date to be converted, in the timezone of the site.
    Required:
  • (string) $format The format string for the returned date. Default 'Y-m-d H:i:s'.
    Required:
    Default: 'Y-m-d H:i:s'
返回值
  • (string) Formatted version of the date, in UTC.
定义位置
相关方法
get_date_from_gmtget_post_formatget_the_dateget_comment_dateget_theme_updates
引入
1.2.0
弃用
-

get_gmt_from_date: 这个函数用来将一个给定的日期字符串转换为等效的GMT时间。这对于确保网站的内容在不同的时区显示一致很有用。

给定一个网站时区的日期,返回该日期的 UTC。

要求并返回一个Y-m-d H:i:s格式的日期。可以使用$format参数重写返回格式。

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

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

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

常见问题

FAQs
查看更多 >