update : 2015.11.03
php.shukuma.com

검색:
 
 
Closes a database

dbase_close

(PHP 4, PHP 5, PHP 7)

dbase_closeCloses a database

설명

bool dbase_close ( int $dbase_identifier )

Closes the given database link identifier.

인수

dbase_identifier

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

반환값

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

예제

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);
}

?>

참고