gcdb::remove_placeholder_escape()
最后更新于:2021-11-26 09:03:58
gcdb::remove_placeholder_escape( string$query)Removes the placeholder escape strings from a query.
参数
- $query
-
(string) (Required) The query from which the placeholder will be removed.
响应
(string) The query with the placeholder removed.
源文件
文件: gc-includes/gc-db.php
public function remove_placeholder_escape( $query ) {
return str_replace( $this->placeholder_escape(), '%', $query );
}