summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/deprecated/mysqli.php
blob: 13839c6c759052df95e6d739b9e43ec4535dffaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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;
}