Files

19 lines
310 B
PHP
Raw Permalink Normal View History

<?php
namespace Safe;
use Safe\Exceptions\MysqliException;
/**
* Returns client per-process statistics.
*
* @return array|false Returns an array with client stats.
*
*/
function mysqli_get_client_stats()
{
error_clear_last();
$safeResult = \mysqli_get_client_stats();
return $safeResult;
}