API15:JDatabase/nameQuote
From Joomla! Documentation
Description
Quote an identifier name (field, table, etc)
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
nameQuote($s)
| Parameter Name | Default Value | Description |
|---|---|---|
| $s | The name |
Returns
string The quoted name
Defined in
libraries/joomla/database/database.php
Importing
jimport( 'joomla.database.database' );
Source Body
function nameQuote( $s )
{
// Only quote if the name is not using dot-notation
if (strpos( $s, '.' ) === false)
{
$q = $this->_nameQuote;
if (strlen( $q ) == 1) {
return $q . $s . $q;
} else {
return $q{0} . $s . $q{1};
}
}
else {
return $s;
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples