API16:JDate/setTimezone
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to wrap the setTimezone() function and set the internal time zone object.
Syntax
setTimezone(DateTimeZone $tz)
| Parameter Name | Default Value | Description |
|---|---|---|
| The new DateTimeZone object. |
Returns
object The old DateTimeZone object.
Defined in
libraries/joomla/utilities/date.php
Importing
jimport( 'joomla.utilities.date' );
Source Body
public function setTimezone(DateTimeZone $tz) { $this->_tz = $tz; return parent::setTimezone($tz); }
[Edit See Also] SeeAlso:JDate/setTimezone
Examples
<CodeExamplesForm />
