Final Class Yiisoft\Db\Oracle\ServerInfo
| Inheritance | Yiisoft\Db\Oracle\ServerInfo » Yiisoft\Db\Driver\Pdo\PdoServerInfo |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| getTimezone() | Yiisoft\Db\Oracle\ServerInfo |
Method Details
| public string getTimezone ( boolean $refresh = false ) | ||
| $refresh | boolean | |
public function getTimezone(bool $refresh = false): string
{
/** @psalm-suppress TypeDoesNotContainType */
if (!isset($this->timezone) || $refresh) {
/** @var string */
$this->timezone = $this->db->createCommand('SELECT SESSIONTIMEZONE FROM DUAL')->queryScalar();
}
return $this->timezone;
}
Signup or Login in order to comment.