Select::escapeLike

public Select::escapeLike($string)

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 414

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function escapeLike($string) {
  return $this->connection->escapeLike($string);
}
doc_Drupal
2016-10-29 09:41:15
Comments
Leave a Comment

Please login to continue.