PHP Doku:: Liefert den ersten Schlüssel - function.dba-firstkey.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAbstraktionsebenenAbstraktionsschicht für dbm-style-DatenbankenDBA-Funktionendba_firstkey

Ein Service von Reinhard Neidl - Webprogrammierung.

DBA-Funktionen

<<dba_fetch

dba_handlers>>

dba_firstkey

(PHP 4, PHP 5)

dba_firstkeyLiefert den ersten Schlüssel

Beschreibung

string dba_firstkey ( resource $handle )

dba_firstkey() gibt den ersten Schlüssel aus der Datenbank zurück und setzt den internen Schlüssel-Zeiger zurück. Dies erlaubt eine sequentielle Suche durch die gesamte Datenbank.

Parameter-Liste

handle

Die Datenbank-Verbindungskennung, die von dba_open() oder dba_popen() zurückgegeben wurde.

Rückgabewerte

Gibt bei Erfolg den Schlüssel zurück. Im Fehlerfall wird FALSE zurückgegeben.

Siehe auch


3 BenutzerBeiträge:
- Beiträge aktualisieren...
rcracer91 at gmail dot com
26.08.2009 21:21
I wondered why it wasn't already written, so I did because I think working with associative arrays is always as comfortable as can be

<?php
function dba_fetch_assoc($handle) {
   
$assoc = array();
    for(
$k = dba_firstkey($handle); $k != false; $k = dba_nextkey($handle)) {
       
$assoc[$k] = dba_fetch($k, $handle);
    }
    return
$assoc;
}
?>
psycho-logic at excite dot com
22.10.2003 14:38
Looks like Jacky is using some DB object? I don't know if it's native to PHP or written on it's own... Anyways this is what I use:

$DBCon = dba_open("/tmp/test_db.db2", "r", "db2") or die("Uh oh, can't open the database :(");
if ($the_key = dba_firstkey($DBCon)) do {
    print("Key: $the_key    Value:");
    print dba_fetch($the_key, $DBCon);
    print("<BR>");
} while ($the_key = dba_nextkey($DBCon));
print ("<BR><BR><BR>Well looks like we're done here :-)");
jacky dot jackyhung dot net
17.01.2002 14:17
for ($key = dba_firstkey($this->handle); $key !== false; $key = dba_nextkey($this->handle)) {
            $keyset[] = $key;
        } // end for



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)