ActionScheduler_DateTime::getOffset()publicWC 1.0ReturnTypeWillChange

Returns the timezone offset.

Method of the class: ActionScheduler_DateTime{}

No Hooks.

Return

Int.

Usage

$ActionScheduler_DateTime = new ActionScheduler_DateTime();
$ActionScheduler_DateTime->getOffset();

ActionScheduler_DateTime::getOffset() code WC 8.7.0

public function getOffset() {
	return $this->utcOffset ? $this->utcOffset : parent::getOffset();
}