API15:JDate/toISO8601
From Joomla! Documentation
Description
Gets the date as an ISO 8601 date.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples