function Select::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/ Select.php, line 430
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function escapeLike($string) {
return $this->connection
->escapeLike($string);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.