PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<mysql_list_fieldsmysql_list_tables>
Last updated: Mon, 16 Jul 2012

mysql_list_processes

(PHP 4 >= 4.3.0, PHP 5)

mysql_list_processes -- 列出 MySQL 进程

说明

resource mysql_list_processes ( [resource link_identifier] )

mysql_list_processes() 返回一个结果指针,说明了当前服务器的线程。

例子 1. mysql_list_processes() 例子

<?php
$link
= mysql_connect('localhost', 'mysql_user', 'mysql_password');

$result = mysql_list_processes($link);
while (
$row = mysql_fetch_assoc($result)){
  
printf("%s %s %s %s %s\n", $row["Id"], $row["Host"], $row["db"],
      
$row["Command"], $row["Time"]);
}
mysql_free_result ($result);
?>

以上例子将产生如下输出:

1 localhost test Processlist 0
4 localhost mysql sleep 5

参见 mysql_thread_id()




<mysql_list_fieldsmysql_list_tables>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST