| Versionen | |
|---|---|
| drupal7 | public DatabaseCondition::count() |
Return the size of this conditional. This is part of the Countable interface.
The size of the conditional is the size of its conditional array minus one, because one element is the the conjunction.
includes/
<?php
public function count() {
return count($this->conditions) - 1;
}
?>
Kommentare
Kommentar hinzufügen