downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

dbase_create> <dbase_add_record
[edit] Last updated: Fri, 25 May 2012

view this page in

dbase_close

(PHP 4, PHP 5)

dbase_closeデータベースを閉じる

説明

bool dbase_close ( int $dbase_identifier )

指定されたデータベースリンク ID を閉じます。

パラメータ

dbase_identifier

データベースのリンク ID 。dbase_open() あるいは dbase_create() によって返されます。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 dBase データベースファイルを閉じる

<?php

// read-only モードでオープンする
$db dbase_open('/tmp/test.dbf'0);

if (
$db) {
  
// データを読む ..
  
  
dbase_close($db);
}

?>

参考



add a note add a note User Contributed Notes dbase_close
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites