<?php
$index = 4;
$id = dba_open("frenzy.db", "w", "flatfile");
if(!$id) exit ("某些错误...");
if(dba_exists($index, $id)) exit ("此键正在使用");
dba_close($id);
?>
(PHP 4, PHP 5, PHP 7, PHP 8)
dba_exists — 检查键是否存在
版本 | 描述 |
---|---|
8.4.0 | dba 参数现在期望一个 Dba\Connection 实例;以前,期望一个有效的 dba 资源。 |
<?php
$index = 4;
$id = dba_open("frenzy.db", "w", "flatfile");
if(!$id) exit ("某些错误...");
if(dba_exists($index, $id)) exit ("此键正在使用");
dba_close($id);
?>