API15:JDate/toRFC822
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 RFC 822 date.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
toRFC822($local=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $local | false |
Returns
a date in RFC 822 format
Defined in
libraries/joomla/utilities/date.php
Importing
jimport( 'joomla.utilities.date' );
Source Body
function toRFC822($local = false) { $date = ($local) ? $this->_date + $this->_offset : $this->_date; $date = ($this->_date !== false) ? date('D, d M Y H:i:s', $date).' +0000' : null; return $date; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
