API16

JDate/getOffsetFromGMT

From Joomla! Documentation

< API16:JDate
Revision as of 17:55, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Get the time offset from GMT in hours or seconds. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDate/getOffsetFromGMT|Edit Descr...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

[Edit Descripton]

Template:Description:JDate/getOffsetFromGMT

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);
}

[Edit See Also] Template:SeeAlso:JDate/getOffsetFromGMT

Examples[edit]

<CodeExamplesForm />