get_gmt_from_date( string $string, string $format = 'Y-m-d H:i:s' )
Returns a date in the GMT equivalent.
Description Description
Requires and returns a date in the Y-m-d H:i:s format. Return format can be overridden using the $format parameter.
Parameters Parameters
- $string
-
(string) (Required) The date to be converted.
- $format
-
(string) (Optional) The format string for the returned date.
Default value: 'Y-m-d H:i:s'
Return Return
(string) GMT version of the date provided.
Source Source
File: wp-includes/formatting.php
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 );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 1.2.0 | Introduced. |