当前位置: 首页>>代码示例>>PHP>>正文


PHP mysqli_result::free_result方法代码示例

本文整理汇总了PHP中mysqli_result::free_result方法的典型用法代码示例。如果您正苦于以下问题:PHP mysqli_result::free_result方法的具体用法?PHP mysqli_result::free_result怎么用?PHP mysqli_result::free_result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mysqli_result的用法示例。


在下文中一共展示了mysqli_result::free_result方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: freeResult

 /**
  * Очищение результатов
  */
 protected function freeResult()
 {
     if ($this->query_result !== null) {
         $this->query_result->free_result();
         $this->query_result = null;
     }
     $this->result = null;
 }
开发者ID:white-bear,项目名称:php-db-layer,代码行数:11,代码来源:MysqliStatement.php

示例2: flush

 /**
  * Free memory associated with the resultset
  *
  * @return void
  */
 public function flush()
 {
     if ($this->result instanceof mysqli_stmt) {
         $this->result->free_result();
     }
     $this->result = null;
     $this->col_info = null;
     // Sanity check before using the handle
     if (empty($this->dbh) || !$this->dbh instanceof mysqli) {
         return;
     }
     // Clear out any results from a multi-query
     while (mysqli_more_results($this->dbh)) {
         mysqli_next_result($this->dbh);
     }
 }
开发者ID:mpeshev,项目名称:wp-db-driver,代码行数:21,代码来源:mysqli.php

示例3: free

 function free()
 {
     $this->result->free_result();
 }
开发者ID:nosun,项目名称:swoole,代码行数:4,代码来源:MysqliResult.php

示例4: free_result

 /**
  * @param mysqli_result $query_id
  * @return bool
  */
 public function free_result($query_id)
 {
     if ($query_id) {
         $query_id->free_result();
     }
 }
开发者ID:tipsun91,项目名称:punbb-mod,代码行数:10,代码来源:common_db.php

示例5: close

 /**
  * @return bool
  */
 public function close()
 {
     return $this->result->free_result();
 }
开发者ID:onedaylabs,项目名称:onedaylabs.com,代码行数:7,代码来源:MysqliStatement.php

示例6: free

 /**
  * @param mysqli_result $result
  * @return mixed
  */
 public function free($result)
 {
     return $result->free_result();
 }
开发者ID:Lazary,项目名称:webasyst,代码行数:8,代码来源:waDbMysqliAdapter.class.php

示例7: mysqlFreeResult

 /**
  * @param mysqli_result $res
  * @return bool
  */
 protected function mysqlFreeResult($res)
 {
     Assert::true($res instanceof mysqli_result, __METHOD__);
     $res->free_result();
     return true;
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:10,代码来源:DatabaseMysqli.php

示例8: freeResult

 /**
  * Frees the memory from the result
  * Call it after you're done with a result set
  *
  * @return static
  */
 public function freeResult()
 {
     $this->result->free_result();
     return $this;
 }
开发者ID:Dewstar,项目名称:SphinxQL-Query-Builder,代码行数:11,代码来源:ResultSet.php


注:本文中的mysqli_result::free_result方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。