WC_DateTime::set_utc_offset()publicWC 1.0

Set UTC offset - this is a fixed offset instead of a timezone.

Метод класса: WC_DateTime{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WC_DateTime = new WC_DateTime();
$WC_DateTime->set_utc_offset( $offset );
$offset(int) (обязательный)
Offset.

Код WC_DateTime::set_utc_offset() WC 8.7.0

public function set_utc_offset( $offset ) {
	$this->utc_offset = intval( $offset );
}