API15:JDatabase/addQuoted
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
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
<CodeExamplesForm />
