function SelectExtender::escapeLike
Escapes characters that work as wildcard characters in a LIKE pattern.
Parameters
$string: The string to escape.
Return value
string The escaped string.
Overrides SelectInterface::escapeLike
File
-
core/
lib/ Drupal/ Core/ Database/ Query/ SelectExtender.php, line 280
Class
- SelectExtender
- The base extender class for Select queries.
Namespace
Drupal\Core\Database\QueryCode
public function escapeLike($string) {
return $this->query
->escapeLike($string);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.