DatabaseConnection::escapeTable

7 database.inc public DatabaseConnection::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.

Return value

The sanitized table name string.

File

includes/database/database.inc, line 906
Core systems for the database layer.

Code

public function escapeTable($table) {
  return preg_replace('/[^A-Za-z0-9_.]+/', '', $table);
}
Login or register to post comments