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.
定义位置
  • wp-includes/formatting.php
    , line 3591
引入
1.2.0
弃用

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.

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 );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。