gcdb::_weak_escape()
最后更新于:2021-11-26 09:07:02
gcdb::_weak_escape( string$string)Do not use, deprecated.
参数
- $string
-
(string) (Required)
响应
(string)
源文件
文件: gc-includes/gc-db.php
function _weak_escape( $string ) {
if ( func_num_args() === 1 && function_exists( '_deprecated_function' ) ) {
_deprecated_function( __METHOD__, '3.6.0', 'gcdb::prepare() or esc_sql()' );
}
return addslashes( $string );
}