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

ibase_server_info

(PHP 5)

ibase_server_infoRequest information about a database server

说明

string ibase_server_info ( resource $service_handle , int $action )
Warning

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


Firebird/InterBase 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Request information about a database server

用户评论:

kgbfernando (19-Jan-2009 11:49)

A Little Example

<?php
   
// get server version and implementation strings
   
if (($service = ibase_service_attach('localhost', 'sysdba', 'masterkey')) != FALSE) {
       
$server_info  = ibase_server_info($service, IBASE_SVC_SERVER_VERSION)
                      .
' / '
                     
. ibase_server_info($service, IBASE_SVC_IMPLEMENTATION);
       
ibase_service_detach($service);
    }
    else {
       
$ib_error = ibase_errmsg();
    }
echo
$server_info;  
?>