dbase_close

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

dbase_closeCloses a database

Opis

dbase_close ( resource $dbase_identifier ) : bool

Closes the given database link identifier.

Parametry

dbase_identifier

The database link identifier, returned by dbase_open() or dbase_create().

Zwracane wartości

Zwraca TRUE w przypadku powodzenia, FALSE w przypadku błędu.

Rejestr zmian

Wersja Opis
dbase 7.0.0 dbase_identifier is now a resource instead of an int.

Przykłady

Przykład #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);
}

?>

Zobacz też:

add a note add a note

User Contributed Notes

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