You are here

public function Select::escapeLike in Drupal 9

Same name and namespace in other branches
  1. 8 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 417

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function escapeLike($string) {
  return $this->connection
    ->escapeLike($string);
}