This method has been deprecated. Use wpdb::prepare() instead.
wpdb::_weak_escape( string $string )
Do not use, deprecated.
Description
Use esc_sql() or wpdb::prepare() instead.
See also
Parameters
- $string
-
(Required)
Return
(string)
Source
File: wp-includes/wp-db.php
function _weak_escape( $string ) {
if ( func_num_args() === 1 && function_exists( '_deprecated_function' ) )
_deprecated_function( __METHOD__, 'WP-3.6.0', 'wpdb::prepare() or esc_sql()' );
return addslashes( $string );
}
Changelog
Version | Description |
---|---|
WP-3.6.0 | Use wpdb::prepare() |
WP-2.8.0 | Introduced. This method has been deprecated. Use wpdb::prepare() instead. |