哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

PHP cubrid 组件

cubrid_close_request

(PECL CUBRID >= 8.3.0)

cubrid_close_requestClose the request handle

说明

cubrid_close_request(resource $req_identifier): bool

The cubrid_close_request() function closes the request handle given by the req_identifier argument, and releases the memory region related to the handle. It is an alias of cubrid_close_prepare().

参数

req_identifier

Request identifier.

返回值

Return true on success.

范例

示例 #1 cubrid_close_request() example

<?php
$con 
cubrid_connect ("localhost"33000"demodb""dba""");
if (
$con) {
   echo 
"connected successfully";
   
$req cubrid_execute $con"select * from members"
                           
CUBRID_INCLUDE_OID CUBRID_ASYNC);
   if (
$req) {
      while ( list (
$id$name) = cubrid_fetch ($req) ){
         echo 
$id;
         echo 
$name;
      } 
      
cubrid_close_request($req); // or you can use cubrid_close_prepare($req)
   
}
   
cubrid_disconnect($con);
}
?>

参见

打开 哈希空间 微信小程序中查看更佳