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

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 函数
在线手册:中文  英文

用户评论:

kgbfernando (2009-01-19 15:49:03)

A Little Example

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

易百教程