dba_exists

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

dba_exists检查键是否存在

描述

dba_exists(string|array $key, resource $dba): bool

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

参数

key

要检查的键。

dba

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

返回值

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

参见

添加说明

用户贡献说明 1 条说明

frenzy dot ivan at gmail dot com
15 年前
<?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