wpdb::add_placeholder_escape( string $query ): string

Adds a placeholder escape string, to escape anything that resembles a printf() placeholder.


Parameters

$query string Required
The query to escape.

Top ↑

Return

string The query with the placeholder escape string inserted where necessary.


Top ↑

Source

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

public function add_placeholder_escape( $query ) {
	/*
	 * To prevent returning anything that even vaguely resembles a placeholder,
	 * we clobber every % we can find.
	 */
	return str_replace( '%', $this->placeholder_escape(), $query );
}


Top ↑

Changelog

Changelog
Version Description
4.8.3 Introduced.

Top ↑

User Contributed Notes

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