wordpress / latest / classes / wpdb / remove_placeholder_escape.html

wpdb::remove_placeholder_escape( string $query ): string

Removes the placeholder escape strings from a query.

Parameters

$query string Required
The query from which the placeholder will be removed.

Return

string The query with the placeholder removed.

Source

File: wp-includes/class-wpdb.php. View all references

public function remove_placeholder_escape( $query ) {
	return str_replace( $this->placeholder_escape(), '%', $query );
}

Uses

Uses Description

Changelog

Version Description
4.8.3 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wpdb/remove_placeholder_escape