public function DatabaseConnection::escapeTable
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.
Archivo
- drupal-7.x/
includes/ database/ database.inc, line 922 - Core systems for the database layer.
Class
- DatabaseConnection
- Base Database API class.
Código
public function escapeTable($table) {
return preg_replace('/[^A-Za-z0-9_.]+/', '', $table);
}