update : 2015.11.03
php.shukuma.com

검색:
 
 
Closes an open connection and releases resourses associated with the connection

sqlsrv_close

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

sqlsrv_closeCloses an open connection and releases resourses associated with the connection

설명

bool sqlsrv_close ( resource $conn )

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

인수

conn

The connection to be closed.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #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 );
?>

참고