get_date_from_gmt
函数
get_date_from_gmt ( $string, $format = 'Y-m-d H:i:s' )
- 参数
-
-
(string)
$string
The date to be converted, in UTC or GMT timezone.- 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)
- 返回值
-
- (string) Formatted version of the date, in the site’s timezone.
- 定义位置
-
-
wp-includes/formatting.php
, line 3613
-
wp-includes/formatting.php
- 引入
- 1.2.0
- 弃用
- –
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.
function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) { $datetime = date_create( $string, new DateTimeZone( 'UTC' ) ); if ( false === $datetime ) { return gmdate( $format, 0 ); } return $datetime->setTimezone( wp_timezone() )->format( $format ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。