public function Query::__clone
Implements the magic __clone function.
1 method overrides Query::__clone()
- SelectQuery::__clone in drupal-7.x/
includes/ database/ select.inc - Implements the magic __clone function.
Archivo
- drupal-7.x/
includes/ database/ query.inc, line 359 - Non-specific Database query code. Used by all engines.
Class
- Query
- Base class for query builders.
Código
public function __clone() {
$this->uniqueIdentifier = uniqid('', TRUE);
}