API16:JDatabaseMySQL/getEscaped
From Joomla! Documentation
Description
Get a database escaped string
<! removed transcluded page call, red link never existed >
Syntax
getEscaped($text, $extra=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text | The string to be escaped | |
| $extra | false | Optional parameter to provide extra escaping |
Returns
string
Defined in
libraries/joomla/database/database/mysql.php
Importing
jimport( 'joomla.database.database.mysql' );
Source Body
public function getEscaped($text, $extra = false)
{
$result = mysql_real_escape_string($text, $this->_connection);
if ($extra) {
$result = addcslashes($result, '%_');
}
return $result;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples