function Connection::escapeTable

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::escapeTable()
  2. 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php \Drupal\Core\Database\Driver\pgsql\Connection::escapeTable()
  3. 8.9.x core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::escapeTable()
  4. 11.x core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::escapeTable()

Escapes a table name string.

Force all table names to be strictly alphanumeric-plus-underscore. Database drivers should never wrap the table name in database-specific escape characters. This is done in Connection::prefixTables(). The database-specific escape characters are added in Connection::setPrefix().

Parameters

string $table: An unsanitized table name.

Return value

string The sanitized table name.

See also

\Drupal\Core\Database\Connection::prefixTables()

\Drupal\Core\Database\Connection::setPrefix()

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function escapeTable($table) {
    if (!isset($this->escapedTables[$table])) {
        $this->escapedTables[$table] = preg_replace('/[^A-Za-z0-9_.]+/', '', $table);
    }
    return $this->escapedTables[$table];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.