略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: sqlsrv_close

2024-04-28

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

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.sqlsrv-close.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3