Which one of the following methods is used to recuperating prepared statements resources?
A
end()
B
finish()
C
mysqli_close()
D
close()
Correct Answer: mysqli_close()
The function mysqli_close() is used to close an opened database connection. Once you’ve finished using a prepared statement, the resources it requires can be recuperated with the mysqli_close() method. Close() was used in previous version of PHP.