Files
kulakpos_web/vendor/thecodingmachine/safe/generated/8.1/mysqli.php

21 lines
349 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
namespace Safe;
use Safe\Exceptions\MysqliException;
/**
2026-04-18 20:32:18 +07:00
* @return array
2026-03-30 14:54:57 +07:00
* @throws MysqliException
*
*/
function mysqli_get_client_stats(): array
{
error_clear_last();
$safeResult = \mysqli_get_client_stats();
if ($safeResult === false) {
throw MysqliException::createFromPhpError();
}
return $safeResult;
}