请问php中有没有能够查看系统cpu占用率,内存占有率
没有听过,如果有我想知道!!!!!!
查看mysql链接数量的函数?
可以的

解决方案 »

  1.   

    请看这个函数,用这个函数就可以解决问题:mysql_list_processes
    (PHP 4 CVS only)mysql_list_processes -- List MySQL processes
    Description
    resource mysql_list_processes ( [resource link_identifier])mysql_list_processes() returns a result pointer describing the current server threads. Example 1. mysql_list_processes() example<?php
    $link = mysql_connect('localhost', 'mysql_user', 'mysql_password');$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);
    ?>The above example would produce the following output: 1 localhost test Processlist 0
    4 localhost mysql sleep 5See also: mysql_thread_id() 不过你们也看到了,这个函数只有CVS版的PHP才能支持.
      

  2.   

    http://sourceforge.net/projects/phpsysinfo/
    PHPSysInfo is a customizable PHP Script that parses /proc, and formats information nicely. It will display information about system facts like Uptime, CPU, Memory, PCI devices, SCSI devices, IDE devices, Network adapters, Disk usage, and more.
      

  3.   

    用PHPMYADMIN 可以查看 MYSQL的连接数