Connection::escapeTable

public Connection::escapeTable($table)

Escapes a table name string.

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

Parameters

string $table: An unsanitized table name.

Return value

string The sanitized table name.

File

core/lib/Drupal/Core/Database/Connection.php, line 944

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function escapeTable($table) {
  return preg_replace('/[^A-Za-z0-9_.]+/', '', $table);
}
doc_Drupal
2016-10-29 08:55:48
Comments
Leave a Comment

Please login to continue.