API16

JDate/getOffsetFromGMT

From Joomla! Documentation

< API16:JDate

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Get the time offset from GMT in hours or seconds.


<! removed transcluded page call, red link never existed >

Syntax[edit]

getOffsetFromGMT($hours=false)
Parameter Name Default Value Description
$hours false True to return the value in hours.

Returns[edit]

float The time offset from GMT either in hours in seconds.

Defined in[edit]

libraries/joomla/utilities/date.php

Importing[edit]

jimport( 'joomla.utilities.date' );

Source Body[edit]

public function getOffsetFromGMT($hours = false)
{
        return (float) $hours ? ($this->_tz->getOffset($this) / 3600) : $this->_tz->getOffset($this);
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]