dbase_close

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

dbase_closeCloses a database

설명

bool dbase_close ( resource $dbase_identifier )

Closes the given database link identifier.

인수

dbase_identifier

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

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

변경점

버전 설명
dbase 7.0.0 dbase_identifier is now a resource instead of an int.

예제

Example #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 add a note

User Contributed Notes

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