Home > Backend Development > PHP Tutorial > mysqli 是否在每次的查询后都需要调用free_result?

mysqli 是否在每次的查询后都需要调用free_result?

WBOY
Release: 2016-06-06 20:30:00
Original
1632 people have browsed it

这个方法是否是和store_result搭配使用的?

回复内容:

这个方法是否是和store_result搭配使用的?

默认情况下,SELECT查询结果将留在MySQL服务器上,等待 fetch 方法把记录逐条取回到PHP程序中.
如果需要对所有记录进行处理,可以调用mysqlistmt::storeresult,把所有结果一次性全部传回到PHP程序中.
这样做不仅更有效率,而且能减轻服务器的负担.
如果获取SELECT语句查找到了多少条记录,可以用 mysqlistmt::$numrows 获取.
这个属性只有在提前执行过 store_result 方法,将全部查询结果传回到PHP程序中的情况下才可以使用.
对比 mysqliresult 的 $numrows 则不没有这个限制.
用 mysqlistmt::freeresult 关闭 mysqlistmt::storeresult :

<code>$stmt->store_result();
echo $stmt->num_rows;
$stmt->free_result();</code>
Copy after login

http://php.net/manual/zh/mysqli-stmt.fetch.php
看官方文档的例程不用.只不过storeresult能让fetch更高效,但也需要用freeresult显式关闭.
另外,个人习惯拿到结果集对象,然后拿到查询数组$results,如:

<code>$result = $stmt->get_result();
$results = $result->fetch_all(MYSQLI_ASSOC);</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template