wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
current_time › WordPress Function
Seit1.0.0
Veraltetn/v
› current_time ( $type, $gmt = 0 )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Retrieves the current time based on specified type.
- The 'mysql' type will return the time in the format for MySQL DATETIME field. - The 'timestamp' or 'U' types will return the current timestamp or a sum of timestamp and timezone offset, depending on$gmt
.
- Other strings will be interpreted as PHP date formats (e.g. 'Y-m-d').
If $gmt
is a truthy value then both types will use GMT time, otherwise the
output is adjusted with the GMT offset for the site.Ähnliche Funktionen: current_datetime, current_filter, current_action, get_current_theme, comment_time
Quellcode
function current_time( $type, $gmt = 0 ) { // Don't use non-GMT timestamp, unless you know the difference and really need to. if ( 'timestamp' === $type || 'U' === $type ) { return $gmt ? time() : time() + (int) ( (float) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ); } if ( 'mysql' === $type ) { $type = 'Y-m-d H:i:s'; } $timezone = $gmt ? new DateTimeZone( 'UTC' ) : wp_timezone(); $datetime = new DateTime( 'now', $timezone ); return $datetime->format( $type ); }