W3cubDocs

/Drupal 8

public function Select::escapeField

public Select::escapeField($string)

Escapes a field name string.

Force all field names to be strictly alphanumeric-plus-underscore. For some database drivers, it may also wrap the field name in database-specific escape characters.

Parameters

string $string: An unsanitized field name.

Return value

The sanitized field name string.

Overrides SelectInterface::escapeField

File

core/lib/Drupal/Core/Database/Query/Select.php, line 421

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Query!Select.php/function/Select::escapeField/8.1.x