| Versionen | |
|---|---|
| drupal7 | public DatabaseStatementPrefetch::fetchAssoc() |
includes/
<?php
public function fetchAssoc() {
if (isset($this->currentRow)) {
$result = $this->currentRow;
$this->next();
return $result;
}
else {
return FALSE;
}
}
?>
Kommentare
Kommentar hinzufügen