API15:JApplication/ toString
From Joomla! Documentation
Description
Returns the response
Template:Description:JApplication/ toString
Syntax
__toString()
Returns
string
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
public function __toString()
{
$compress = $this->getCfg('gzip', false);
return JResponse::toString($compress);
}
[Edit See Also] Template:SeeAlso:JApplication/ toString
Examples
<CodeExamplesForm />