在线文档教程

sqlsrv_client_info

sqlsrv_client_info

(没有可用的版本信息,可能只在Git中)

sqlsrv_client_info — 返回有关客户端和指定连接的信息

描述

array sqlsrv_client_info ( resource $conn )

返回有关客户端和指定连接的信息

参数

conn

关于返回哪些信息的连接。

返回值

返回下表中描述的关键字的关联数组。否则返回FALSE

描述
DriverDllNameSQLNCLI10.DLL
DriverODBCVerODBC版本(xx.yy)
DriverVerSQL Server Native Client DLL版本(10.5.xxx)
ExtensionVerphp_sqlsrv.dll版本(2.0.xxx.x)

例子

示例#1 sqlsrv_client_info()示例

<?php $serverName = "serverName\sqlexpress"; $connOptions = array("UID"=>"username", "PWD"=>"password" $conn = sqlsrv_connect( $serverName, $connOptions  if( $conn === false ) {     die( print_r( sqlsrv_errors(), true) } if( $client_info = sqlsrv_client_info( $conn)) {     foreach( $client_info as $key => $value) {         echo $key.": ".$value."<br />";     } } else {     echo "Error in retrieving client info.<br />"; } ?>