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

Breadcrumb

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

function Connection::quote

Quotes a string for use in a query.

Parameters

string $string: The string to be quoted.

int $parameter_type: (optional) Provides a data type hint for drivers that have alternate quoting styles. Defaults to \PDO::PARAM_STR.

Return value

string|bool A quoted string that is theoretically safe to pass into an SQL statement. Returns FALSE if the driver does not support quoting in this way.

See also

\PDO::quote()

File

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

Class

Connection
Base Database API class.

Namespace

Drupal\Core\Database

Code

public function quote($string, $parameter_type = \PDO::PARAM_STR) {
    return $this->connection
        ->quote($string, $parameter_type);
}

API Navigation

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