sqlsrv_close

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

sqlsrv_closeCloses an open connection and releases resourses associated with the connection

説明

sqlsrv_close(resource $conn): bool

Closes an open connection and releases resourses associated with the connection.

パラメータ

conn

The connection to be closed.

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 sqlsrv_close() example

<?php
$serverName 
"serverName\sqlexpres";
$connOptions = array("UID"=>"username""PWD"=>"password""Database"=>"dbname");
$conn sqlsrv_connect$serverName$connOptions );
if( 
$conn === false ) {
     die( 
print_rsqlsrv_errors(), true));
}

//-------------------------------------
// Perform database operations here.
//-------------------------------------

// Close the connection.
sqlsrv_close$conn );
?>

参考

関連キーワード:  connection, sqlsrv, Closes, open, releases, resourses, associated, conn, resource, Opens