sqlsrv_close
(No version information available, might only be in Git)
sqlsrv_close — Closes an open connection and releases resourses associated with the connection
説明
Closes an open connection and releases resourses associated with the connection.
パラメータ
conn
-
The connection to be closed.
例
例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 );
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google