API15

JDate/toISO8601

From Joomla! Documentation

< API15:JDate

The "API15" 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]

Gets the date as an ISO 8601 date.

[<! removed edit link to red link >]

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

Syntax[edit]

toISO8601($local=false)
Parameter Name Default Value Description
$local false

Returns[edit]

a date in ISO 8601 (RFC 3339) format

Defined in[edit]

libraries/joomla/utilities/date.php

Importing[edit]

jimport( 'joomla.utilities.date' );

Source Body[edit]

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[edit]

Code Examples[edit]