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); }
Please login to continue.