如何在OOP风格中使用mysqli_free_result?

时间:2012-11-30 02:26:45

标签: php mysqli

我正在摆弄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;

1 个答案:

答案 0 :(得分:1)

您忘记了方法调用的括号。另外,free_result()mysqli_stmt class而不是mysqli类的方法。

$mysqli_stmt ->free_result();
$mysqli ->close();