API15:JDatabase/Quote
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get a quoted database escaped string
Syntax
Quote($text, $escaped=true)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text | A string | |
| $escaped | true | Default true to escape string, false to leave the string unchanged |
Returns
string public
Defined in
libraries/joomla/database/database.php
Importing
jimport( 'joomla.database.database' );
Source Body
function Quote( $text, $escaped = true ) { return '\''.($escaped ? $this->getEscaped( $text ) : $text).'\''; }
[Edit See Also] SeeAlso:JDatabase/Quote
Examples
<CodeExamplesForm />
