(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
sqlsrv_close — Closes an open connection and releases resourses associated with the connection
$conn
)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_r( sqlsrv_errors(), true));
}
//-------------------------------------
// Perform database operations here.
//-------------------------------------
// Close the connection.
sqlsrv_close( $conn );
?>