get_date_from_gmt() WP 1.0
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. Return format can be overridden using the $format parameter.
Works based on: get_option()
1 time = 0.000149s = fast | 50000 times = 3.75s = fast
No Hooks.
Return
String. Formatted version of the date, in the site's timezone.
Usage
get_date_from_gmt( $string, $format );
- $string(string) (required)
- The date to be converted, in UTC or GMT timezone.
- $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_date_from_gmt() get date from gmt WP 5.6
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 );
}Related Functions
From tag: date time
- comment_date()
- comment_time()
- current_time()
- date_i18n()
- get_comment_date()
- get_comment_time()
- get_gmt_from_date()