1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/vendor/thecodingmachine/safe/deprecated/mysqli.php
2024-08-21 09:11:05 -03:00

22 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;
}