get_date_from_gmt()
get_date_from_gmt( string $string, string $format = ‘Y-…
get_date_from_gmt( string $string, string $format = ‘Y-m-d H:i:s’ )
给定UTC时区中的日期,返回站点时区中的该日期。
Given a date in UTC timezone, returns that date in the timezone of the site.
目录锚点:#说明#参数#返回#源码
说明(Description)
需要并返回Y-m-d H:i:s格式的日期。可以使用$format参数重写返回格式。
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$string | (string) | 必需 | 要转换的日期,以UTC时区为单位。 |
$format | (string) | 可选 | 返回日期的格式字符串。 |
返回(Return)
(string)站点时区中日期的格式化版本。
源码(Source)
/** * Converts a GMT date into the correct format for the blog. * * Requires and returns a date in the Y-m-d H:i:s format. If there is a * timezone_string available, the returned date is in that timezone, otherwise * it simply adds the value of gmt_offset. Return format can be overridden * using the $format parameter * * @since 1.2.0 * * @param string $string The date to be converted. * @param string $format The format string for the returned date (default is Y-m-d H:i:s) * @return string Formatted date relative to the timezone / GMT offset. */ function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) { $tz = get_option( 'timezone_string' ); if ( $tz ) { $datetime = date_create( $string, new DateTimeZone( 'UTC' ) ); if ( ! $datetime ) return date( $format, 0 ); $datetime->setTimezone( new DateTimeZone( $tz ) ); $string_localtime = $datetime->format( $format ); } else { if ( ! preg_match('#([0-9]{1,4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})#', $string, $matches) ) return date( $format, 0 ); $string_time = gmmktime( $matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1] ); $string_localtime = gmdate( $format, $string_time + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); } return $string_localtime; }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
1.2.0 | wp-includes/formatting.php:3535 | 4 | 1 function |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!