PHP Conference Kansai 2025

sqlsrv_server_info

(No version information available, might only be in Git)

sqlsrv_server_infoReturns information about the server

Description

sqlsrv_server_info(resource $conn): array

Returns information about the server.

Parameters

conn

The connection resource that connects the client and the server.

Return Values

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

Example #1 sqlsrv_server_info() example

<?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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant