get_gmt_from_date()
最后更新于:2021-11-26 09:10:11
get_gmt_from_date( string$string, string$format=’Y-m-d H:i:s’)Given a date in the timezone of the site, returns that date in UTC.
参数
- $string
-
(string) (Required) The date to be converted, in the timezone of the site.
- $format
-
(string) (Optional) The format string for the returned date.
Default value: ‘Y-m-d H:i:s’
响应
(string) Formatted version of the date, in UTC.
源文件
文件: gc-includes/formatting.php
function get_gmt_from_date( $string, $format = 'Y-m-d H:i:s' ) {
$datetime = date_create( $string, gc_timezone() );
if ( false === $datetime ) {
return gmdate( $format, 0 );
}
return $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( $format );
}