wpdb::remove_placeholder_escape( string $query )

Removes the placeholder escape strings from a query.


Description Description


Parameters Parameters

$query

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


Top ↑

Return Return

(string) The query with the placeholder removed.


Top ↑

Source Source

File: wp-includes/wp-db.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.8.3 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.