WC_DateTime::set_utc_offset
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 DateTime::set utc offset WC 10.8.1
public function set_utc_offset( $offset ) {
$this->utc_offset = intval( $offset );
}