This function has been deprecated. Use wpdb::esc_like() instead.

like_escape( string $text )

Formerly used to escape strings before searching the DB. It was poorly documented and never worked as described.


Description

See also


Parameters

$text

(string) (Required) The text to be escaped.


Return

(string) text, safe for inclusion in LIKE query.


Source

File: wp-includes/deprecated.php

function like_escape($text) {
	_deprecated_function( __FUNCTION__, 'WP-4.0.0', 'wpdb::esc_like()' );
	return str_replace( array( "%", "_" ), array( "\\%", "\\_" ), $text );
}


Changelog

Changelog
Version Description
WP-4.0.0 Use wpdb::esc_like()
WP-2.5.0 Introduced. This function has been deprecated. Use wpdb::esc_like() instead.