Firebird/InterBase 函数
在线手册:中文 英文
PHP手册

ibase_backup

(PHP 5)

ibase_backupInitiates a backup task in the service manager and returns immediately

说明

mixed ibase_backup ( resource $service_handle , string $source_db , string $dest_file [, int $options = 0 [, bool $verbose = false ]] )
Warning

本函数还未编写文档,仅有参数列表。


Firebird/InterBase 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Initiates a backup task in the service manager and returns immediately

用户评论:

Gara (11-Jan-2006 12:36)

I tried to get the backup function working, but could never figur out where to get the resource service_handle. The trick was to use ibase_service_attach.

$resource_service_handle = ibase_service_attach ('localhost', 'username', 'password');

ibase_backup($resource_service_handle, 'source_database', 'destination_file');

ibase_service_detach ($resource_service_handle);