wpdb::_real_escape( string $string )
Real escape, using mysqli_real_escape_string() or mysql_real_escape_string()
Description
See also
Parameters
- $string
-
(Required) to escape
Return
(string) escaped
Source
File: wp-includes/wp-db.php
function _real_escape( $string ) {
if ( $this->dbh ) {
if ( $this->use_mysqli ) {
$escaped = mysqli_real_escape_string( $this->dbh, $string );
} else {
$escaped = mysql_real_escape_string( $string, $this->dbh );
}
} else {
$class = get_class( $this );
if ( function_exists( '__' ) ) {
/* translators: %s: database access abstraction class, usually wpdb or a class extending wpdb */
_doing_it_wrong( $class, sprintf( __( '%s must set a database connection for use with escaping.' ), $class ), 'WP-3.6.0' );
} else {
_doing_it_wrong( $class, sprintf( '%s must set a database connection for use with escaping.', $class ), 'WP-3.6.0' );
}
$escaped = addslashes( $string );
}
return $this->add_placeholder_escape( $escaped );
}
Changelog
Version | Description |
---|---|
WP-2.8.0 | Introduced. |