API15:JDate/toISO8601
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
Gets the date as an ISO 8601 date.
Syntax
toISO8601($local=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $local | false |
Returns
a date in ISO 8601 (RFC 3339) format
Defined in
libraries/joomla/utilities/date.php
Importing
jimport( 'joomla.utilities.date' );
Source Body
function toISO8601($local = false) { $date = ($local) ? $this->_date + $this->_offset : $this->_date; $offset = $this->getOffset(); $offset = ($local && $this->_offset) ? sprintf("%+03d:%02d", $offset, abs(($offset-intval($offset))*60) ) : 'Z'; $date = ($this->_date !== false) ? date('Y-m-d\TH:i:s', $date).$offset : null; return $date; }
[Edit See Also] SeeAlso:JDate/toISO8601
Examples
<CodeExamplesForm />
