Swift_Mime_Headers_DateHeader::getFieldBody PHP Method

getFieldBody() public method

This is not necessarily RFC 2822 compliant since folding white space will not be added at this stage (see {@link toString()} for that).
See also: toString()
public getFieldBody ( ) : string
return string
    public function getFieldBody()
    {
        if (!$this->getCachedValue()) {
            if (isset($this->_timestamp)) {
                $this->setCachedValue(date('r', $this->_timestamp));
            }
        }
        return $this->getCachedValue();
    }