SQLSRV 函数
在线手册:中文 英文
PHP手册

sqlsrv_server_info

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

sqlsrv_server_infoReturns information about the server

说明

array sqlsrv_server_info ( resource $conn )

Returns information about the server.

参数

conn

The connection resource that connects the client and the server.

返回值

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.

范例

Example #1 sqlsrv_server_info() example

<?php
$serverName 
"serverName\sqlexpress";
$conn sqlsrv_connect$serverName);
if( 
$conn === false ) {
     die( 
print_rsqlsrv_errors(), true));
}

$server_info sqlsrv_server_info$conn);
if( 
$server_info )
{
    foreach( 
$server_info as $key => $value) {
       echo 
$key.": ".$value."<br />";
    }
} else {
      die( 
print_rsqlsrv_errors(), true));
}
?>

参见


SQLSRV 函数
在线手册:中文 英文
PHP手册