1

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

1 回答 1

2

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

$mysqli_stmt->free_result();
$mysqli->close();
于 2012-11-30T02:27:41.790 回答