ibase_server_info

(PHP 5, PHP 7)

ibase_server_infoRequest information about a database server

설명

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

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

add a note add a note

User Contributed Notes 1 note

up
1
kgbfernando
15 years ago
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;  
?>
To Top