get_gmt_from_date() WP 1.0
Returns a date in the GMT equivalent.
Requires and returns a date in the Y-m-d H:i:s format. Return format can be overridden using the $format parameter.
Works based on: get_option()
1 time = 0.000157s = fast | 50000 times = 2.98s = fast
No Hooks.
Return
String. Formatted version of the date, in UTC.
Usage
get_gmt_from_date( $string, $format );
- $string(string) (required)
- The date to be converted, in the timezone of the site.
- $format(string)
- The format string for the returned date.
Default: 'Y-m-d H:i:s'
Changelog
Since 1.2.0 | Introduced. |
Code of get_gmt_from_date() get gmt from date WP 5.6
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 );
}Related Functions
From tag: date time
- comment_date()
- comment_time()
- current_time()
- date_i18n()
- get_comment_date()
- get_comment_time()
- get_date_from_gmt()