| Versionen | |
|---|---|
| drupal7 | public DatabaseStatementBase::fetchAllKeyed($key_index = 0, $value_index = 1) |
includes/
<?php
public function fetchAllKeyed($key_index = 0, $value_index = 1) {
$return = array();
$this->setFetchMode(PDO::FETCH_NUM);
foreach ($this as $record) {
$return[$record[$key_index]] = $record[$value_index];
}
return $return;
}
?>
Kommentare
Kommentar hinzufügen