wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
iso8601_timezone_to_offset › WordPress Function
Seit1.5.0
Veraltetn/v
› iso8601_timezone_to_offset ( $timezone )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Given an ISO 8601 timezone, returns its UTC offset in seconds.
Ähnliche Funktionen: wp_timezone_override_offset, wp_timezone_choice, wp_timezone_string, iso8601_to_datetime, wp_timezone_supported
Quellcode
function iso8601_timezone_to_offset( $timezone ) { // $timezone is either 'Z' or '[+|-]hhmm'. if ( 'Z' === $timezone ) { $offset = 0; } else { $sign = ( str_starts_with( $timezone, '+' ) ) ? 1 : -1; $hours = (int) substr( $timezone, 1, 2 ); $minutes = (int) substr( $timezone, 3, 4 ) / 60; $offset = $sign * HOUR_IN_SECONDS * ( $hours + $minutes ); } return $offset; }