public function Select::escapeLike in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\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
See also
\Drupal\Core\Database\Connection::escapeLike()
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Select.php, line 415
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function escapeLike($string) {
return $this->connection
->escapeLike($string);
}