API16

Difference between revisions of "JDatabaseQueryElement/ toString"

From Joomla! Documentation

< API16:JDatabaseQueryElement
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JDataba...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
<! removed transcluded page call, red link never existed >
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JDatabaseQueryElement/__toString|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
 
{{Description:JDatabaseQueryElement/__toString}}
 
  
 
===Syntax===
 
===Syntax===
Line 23: Line 18:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JDatabaseQueryElement/__toString|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JDatabaseQueryElement/__toString}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=__toString
 
  category=__toString
 
  category=JDatabaseQueryElement
 
  category=JDatabaseQueryElement
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:30, 24 March 2017

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

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

Syntax[edit]

__toString()


Defined in[edit]

libraries/joomla/database/databasequery.php

Importing[edit]

jimport( 'joomla.database.databasequery' );

Source Body[edit]

public function __toString()
{
        return PHP_EOL.$this->_name.' '.implode($this->_glue, $this->_elements);
}


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

Examples[edit]

Code Examples[edit]