dbmnextkey

(PHP 3, PHP 4 )

dbmnextkey --  Recupera la chiave successiva da un database DBM

Descrizione

string dbmnextkey ( resource dbm_identifier, string key )

Restituisce la chiave successiva dopo key. Chiamando la funzione dbmfirstkey() seguita da successive chiamate alla funzione dbmnextkey() รจ possibile visionare ciascuna coppia key/value nel database DBM. Per esempio:

Esempio 1. Esaminare ogni coppia key/value in un database DBM

<?php

$key
= dbmfirstkey($dbm_id);
while (
$key) {
    echo
"$key = " . dbmfetch($dbm_id, $key) . "\n";
    
$key = dbmnextkey($dbm_id, $key);
}

?>

Hosting by: hurra.com
Generated: 2007-01-26 17:56:23