PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mysql_list_tables> <mysql_list_fields
Last updated: Sat, 24 Mar 2007

view this page in

mysql_list_processes

(PHP 4 >= 4.3.0, PHP 5, PECL mysql:1.0)

mysql_list_processes — List MySQL processes

Popis

resource mysql_list_processes ( [resource $link_identifier] )

mysql_list_processes() vrací ukazatel popisující aktuální vlákna serveru.

Příklad 1191. mysql_list_processes() příklad

<?php
$link
= mysql_connect('localhost', 'mysql_jmeno', 'mysql_heslo');

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

Předchozí příklad by zobrazit následující výstup:


1 localhost test Processlist 0
4 localhost mysql sleep 5

       


Dále také: mysql_thread_id()



add a note add a note User Contributed Notes
mysql_list_processes
There are no user contributed notes for this page.

mysql_list_tables> <mysql_list_fields
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites