Forum und email

dbmnextkey

(PHP 4)

dbmnextkey —

설명

string dbmnextkey ( resource $dbm_identifier , string $key )

Returns the next key after key .

매개변수

dbm_identifier

dbmopen()이 반환한 DBM 연결 식별자입니다.

key

The previous key

반환값

The next key if possible

예제

By calling dbmfirstkey() followed by successive calls to dbmnextkey() it is possible to visit every key/value pair in the dbm database. For example:

Example#1 Visiting every key/value pair in a DBM database

<?php

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

?>

참고