您可以使用以下方法在 php 中实现 MySQLi 的 mysql_list_processes() 函数的等效功能:
function mysqli_list_processes(){
$query = "SHOW PROCESSLIST";
if ($res =$this->mysqli->query($query)){
while ($row = $res->fetch_assoc()) $recs[$i++] = $row;
$res->close();
return $recs;
} else {
return false;
}
}