mysqli::more_results

(PHP 5, PHP 7) Check if there are any more query results from a multi query bool mysqli::more_results ( void ) Object oriented style Procedural style bool mysqli_more_results ( mysqli $link ) Indicates if one or more result sets are available from a previous call to mysqli_multi_query(). Parameters: link Procedural style only: A link identifier returned by mysqli_connect(

mysqli::$info

(PHP 5, PHP 7) Retrieves information about the most recently executed query string mysqli_info ( mysqli $link ) Object oriented style string $mysqli->info; Procedural style The mysqli_info() function returns a string providing information about the last query executed. The nature of this string is provided below: Possible mysqli_info return values Query type Example result string INSERT INTO...SELECT... Records: 100 Dup

mysqli::$server_info

(PHP 5, PHP 7) Returns the version of the MySQL server string mysqli_get_server_info ( mysqli $link ) Object oriented style string $mysqli->server_info; Procedural style Returns a string representing the version of the MySQL server that the MySQLi extension is connected to. Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli

mysqli::$server_version

(PHP 5, PHP 7) Returns the version of the MySQL server as an integer int mysqli_get_server_version ( mysqli $link ) Object oriented style int $mysqli->server_version; Procedural style The mysqli_get_server_version() function returns the version of the server connected to (represented by the link parameter) as an integer. Parameters: link Procedural style only: A link i

mysqli::get_warnings

(PHP 5 >= 5.1.0, PHP 7) Get result of SHOW WARNINGS mysqli_warning mysqli::get_warnings ( void ) Object oriented style Procedural style mysqli_warning mysqli_get_warnings ( mysqli $link ) This function is currently not documented; only its argument list is available.

mysqli::$protocol_version

(PHP 5, PHP 7) Returns the version of the MySQL protocol used int mysqli_get_proto_info ( mysqli $link ) Object oriented style string $mysqli->protocol_version; Procedural style Returns an integer representing the MySQL protocol version used by the connection represented by the link parameter. Parameters: link Procedural style only: A link identifier returned by mysqli

mysqli_get_client_stats

(PHP 5 >= 5.3.0, PHP 7) Returns client per-process statistics array mysqli_get_client_stats ( void ) Returns client per-process statistics. Available only with mysqlnd. Returns: Returns an array with client stats if success, FALSE otherwise. Examples: A mysqli_get_client_stats() example <?php $link = mysqli_connect(

mysqli::get_charset

(PHP 5 >= 5.1.0, PHP 7) Returns a character set object object mysqli::get_charset ( void ) Object oriented style Procedural style object mysqli_get_charset ( mysqli $link ) Returns a character set object providing several properties of the current active character set. Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init

mysqli::get_client_info

(PHP 5, PHP 7) Get MySQL client info string mysqli::get_client_info ( void ) Object oriented style Procedural style string mysqli_get_client_info ( mysqli $link ) Returns a string that represents the MySQL client library version. Returns: A string that represents the MySQL client library version Examples: mysqli_get_client_info

mysqli::$host_info

(PHP 5, PHP 7) Returns a string representing the type of connection used string mysqli_get_host_info ( mysqli $link ) Object oriented style string $mysqli->host_info; Procedural style Returns a string describing the connection represented by the link parameter (including the server host name). Parameters: link Procedural style only: A link identifier returned by mysqli