sqlsrv_server_info

(No version information available, might only be in Git)
Returns information about the server
array sqlsrv_server_info ( resource $conn )

Returns information about the server.

Parameters:
conn

The connection resource that connects the client and the server.

Returns:

Returns an array as described in the following table:

Returned Array
CurrentDatabase The connected-to database.
SQLServerVersion The SQL Server version.
SQLServerName The name of the server.
Examples:
sqlsrv_server_info() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$serverName "serverName\sqlexpress";
$conn = sqlsrv_connect( $serverName);
if$conn === false ) {
     die( print_r( sqlsrv_errors(), true));
}
 
$server_info = sqlsrv_server_info( $conn);
if$server_info )
{
    foreach$server_info as $key => $value) {
       echo $key.": ".$value."<br />";
    }
else {
      die( print_r( sqlsrv_errors(), true));
}
?>
See also:

sqlsrv_client_info() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.