odbc_close()函數(shù)關閉ODBC連接。
void odbc_close ( resource $connection_id )
關閉與數(shù)據(jù)庫服務器的連接。
沒有值返回
序號 | 參數(shù)和說明 |
---|---|
1 | connection_id 它包含連接ID信息 |
試試下面的實例,odbc_close關閉odbc_open打開的連接
<?php $input_ID = odbc_open("nhooo","user","pass"); odbc_close($input_ID); ?>