ibase_server_info

(PHP 5, PHP 7 < 7.4.0)

ibase_server_infoRequest information about a database server

Description

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

Parameters

service_handle

A previously created connection to the database server.

action

A valid constant.

Return Values

Returns mixed types depending on context.

Examples

Example #1 ibase_service_attach() example

<?php
// Attach to the remote Firebird server
if (($service = ibase_service_attach('10.1.1.254/3050', 'sysdba', 'masterkey')) != FALSE) {

// Successfully attached.

The above example will output:

Server version: LI-V3.0.4.33054 Firebird 3.0 Server implementation: Firebird/Linux/AMD/Intel/x64 Server users: Array ( [0] => Array ( [user_name] => SYSDBA [first_name] => Sql [middle_name] => Server [last_name] => Administrator [user_id] => 0 [group_id] => 0 ) ) Server directory: /etc/firebird/ Server lock path: /tmp/firebird/ Server lib path: /usr/lib64/firebird/lib/ Path of user db: /var/lib/firebird/secdb/security3.fdb Established connections: Array ( [attachments] => 3 [databases] => 2 [0] => /srv/firebird/poss.fdb [1] => /srv/firebird/employees.fdb )
To Top