JDatabaseQueryElement/ toString: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 22: | Line 22: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=__toString | category=__toString | ||
category=JDatabaseQueryElement | category=JDatabaseQueryElement | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:30, 25 March 2017
<! removed transcluded page call, red link never existed >
Syntax
__toString()
Defined in
libraries/joomla/database/databasequery.php
Importing
jimport( 'joomla.database.databasequery' );
Source Body
public function __toString()
{
return PHP_EOL.$this->_name.' '.implode($this->_glue, $this->_elements);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples