Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Connection.php

function Connection::escapeDatabase

Escapes a database name string.

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

Parameters

string $database: An unsanitized database name.

Return value

string The sanitized database name.

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function escapeDatabase($database) {
    $database = preg_replace('/[^A-Za-z0-9_]+/', '', $database);
    [
        $start_quote,
        $end_quote,
    ] = $this->identifierQuotes;
    return $start_quote . $database . $end_quote;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal