mysqli::refresh

mysqli_refresh

Refreshes

Warning

This function has been DEPRECATED as of PHP 8.4.0. Relying on this function is highly discouraged.

Description

Object-oriented style

public bool mysqli::refresh(int $flags)

Procedural style

bool mysqli_refresh(mysqli $mysql, int $flags)

Flushes tables or caches, or resets the replication server information.

Parameters

mysql

Procedural style only: A mysqli object returned by mysqli_connect or mysqli_init

flags

The options to refresh, using the MYSQLI_REFRESH_* constants as documented within the MySQLi constants documentation.

See also the official » MySQL Refresh documentation.

Return Values

true if the refresh was a success, otherwise false

Changelog

Version Description
8.4.0 Both mysqli::refresh and mysqli_refresh are now deprecated. Use FLUSH SQL commands instead.

See Also

  • mysqli_poll