API16

API16:JDate/toRFC822

From Joomla! Documentation

Description

Gets the date as an RFC 822 string. IETF RFC 2822 supercedes RFC 822 and its definition can be found at the IETF Web site.


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

Syntax

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

Defined in

libraries/joomla/utilities/date.php

Importing

jimport( 'joomla.utilities.date' );

Source Body

public function toRFC822($local = false)
{
        return $this->format(DATE_RFC822, $local);
}


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

Examples

Code Examples