dba_firstkey

(PHP 4、PHP 5、PHP 7、PHP 8)

dba_firstkey获取第一个键

描述

dba_firstkey(resource $dba): string|false

dba_firstkey() 返回数据库的第一个键,并重置内部键指针。这允许线性搜索整个数据库。

参数

dba

数据库句柄,由 dba_open()dba_popen() 返回。

返回值

成功时返回键,失败时返回 false

参见

添加注释

用户贡献的注释 3 个注释

jacky dot jackyhung dot net
22 年前
for ($key = dba_firstkey($this->handle); $key !== false; $key = dba_nextkey($this->handle)) {
$keyset[] = $key;
} // end for
rcracer91 at gmail dot com
14 年前
我很好奇为什么还没有人写,所以我写了它,因为我认为使用关联数组总是尽可能方便

<?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
20 年前
看起来 Jacky 在使用一些 DB 对象?我不知道它是否原生于 PHP 或者自己编写的... 无论如何,这是我使用的

$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 :-)");
To Top