API15:JDatabase/Quote
From Joomla! Documentation
Description
Get a quoted database escaped string
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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).'\'';
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples