API15:JDatabase/addQuoted
From Joomla! Documentation
Description
Adds a field or array of field names to the list that are to be quoted
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
addQuoted($quoted)
| Parameter Name | Default Value | Description |
|---|---|---|
| $quoted | Field name or array of names |
Defined in
libraries/joomla/database/database.php
Importing
jimport( 'joomla.database.database' );
Source Body
function addQuoted( $quoted )
{
if (is_string( $quoted )) {
$this->_quoted[] = $quoted;
} else {
$this->_quoted = array_merge( $this->_quoted, (array)$quoted );
}
$this->_hasQuoted = true;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples