我在摆弄 mysqli,我对 mysqli_free_result() 方法有疑问。(或者它是一个函数?还是要学习OOP)。
如果我以程序方式运行代码,我会像这样调用函数:
/*
Destroy the result set and free the memory used for it.
*/
mysqli_free_result($result);
如何以 OOP 风格运行此功能?
$mysqli->free_result(); // does not work. Any ideas why?
我是否应该在完成 mysqli 工作后不释放结果并关闭连接,最后是:
$mysqli->close;