Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/thecodingmachine/safe/deprecated/
Upload File :
Current File : //home/rtorresani/www/vendor/thecodingmachine/safe/deprecated/mysqli.php

<?php

namespace Safe;

use Safe\Exceptions\MysqliException;

/**
 * Returns client per-process statistics.
 *
 * @return array Returns an array with client stats if success, FALSE otherwise.
 * @throws MysqliException
 *
 */
function mysqli_get_client_stats(): array
{
    error_clear_last();
    $result = \mysqli_get_client_stats();
    if ($result === false) {
        throw MysqliException::createFromPhpError();
    }
    return $result;
}