PHP 8.4.1 Released!

dba_exists

(PHP 4, PHP 5, PHP 7, PHP 8)

dba_exists检查键是否存在

说明

dba_exists(string|array $key, Dba\Connection $dba): bool

dba_exists() 检查数据库中是否存在指定的 key

参数

key

要检查的键。

dba

一个由 dba_open()dba_popen() 返回的 Dba\Connection 实例。

返回值

如果键存在则返回 true,否则返回 false

更新日志

版本 说明
8.4.0 dba 参数现在接受 Dba\Connection 实例, 之前接受有效的 dba resource

参见

添加备注

用户贡献的备注 1 note

up
-2
frenzy dot ivan at gmail dot com
15 years ago
<?php

$index
= 4;
$id = dba_open("frenzy.db", "w", "flatfile");
if(!
$id) exit ("Some error...");
if(
dba_exists($index, $id)) exit ("This key is using");
dba_close($id);

?>
To Top