Dutch PHP Conference 2025 - Call For Papers

dbase_close

(PHP 5 < 5.3.0, dbase 5, dbase 7)

dbase_closeCloses a database

Опис

dbase_close(resource $database): bool

Closes the given database resource.

Параметри

database

The database resource, returned by dbase_open() or dbase_create().

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Журнал змін

Версія Опис
dbase 7.0.0 database is now a resource instead of an int.

Приклади

Приклад #1 Closing a dBase database file

<?php

// open in read-only mode
$db = dbase_open('/tmp/test.dbf', 0);

if (
$db) {
// read some data ..

dbase_close($db);
}

?>

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top