1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00
ttrss/vendor/thecodingmachine/safe/deprecated/mysqli.php

23 lines
446 B
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;
}