wpdb::add_placeholder_escape
Adds a placeholder escape string, to escape anything that resembles a printf() placeholder.
Method of the class: wpdb{}
No Hooks.
Returns
String
. The query with the placeholder escape string inserted where necessary.
Usage
global $wpdb; $wpdb->add_placeholder_escape( $query );
- $query(string) (required)
- The query to escape.
Changelog
Since 4.8.3 | Introduced. |
wpdb::add_placeholder_escape() wpdb::add placeholder escape code WP 6.8.1
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 ); }