PHP Conference Japan 2024

dba_exists

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

dba_exists检查键是否存在

描述

dba_exists(字符串|数组 $key, Dba\Connection $dba): 布尔值

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

参数

key

执行检查的键。

dba

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

返回值

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

变更日志

版本 描述
8.4.0 dba 参数现在期望一个 Dba\Connection 实例;以前,期望一个有效的 dba 资源

参见

添加注释

用户贡献的注释 1 条注释

frenzy dot ivan at gmail dot com
16 年前
<?php

$index
= 4;
$id = dba_open("frenzy.db", "w", "flatfile");
if(!
$id) exit ("某些错误...");
if(
dba_exists($index, $id)) exit ("此键正在使用");
dba_close($id);

?>
To Top