我可以在页面末尾只使用一个mysqli_free_result
(PHP)吗?在页面中,我使用具有不同查询的多个mysqli_query
。例如:
$res= mysqli_query($conexion, $sql)
...
$res= mysqli_query($conexion, $sql)
...
$res= mysqli_query($conexion, $sql)
...
...
if ($res){@mysqli_free_result($res);}
或者我每次都要取结果?