win32_ps_list_procs

(PECL win32ps >= 1.0.1)

win32_ps_list_procsList running processes

Описание

array win32_ps_list_procs ( void )

Retrieves statistics about all running processes.

Возвращаемые значения

Returns FALSE on failure, or an array consisting of process statistics like win32_ps_stat_proc() returns for all running processes on success.

Смотрите также

Коментарии

For those of you in the WAMP environment, here is a little function that you may find handy:

<?
function kill_proc($processName)
{
    @
$processList win32_ps_list_procs();
    foreach (
$processList as $processArray)
    {
       
$pid $processArray['pid'];
        if (
basename($processArray['exe']) == $processName)
        {           
            `
taskkill /f /PID $pid 2>&1`;                   
        }
    }
}
?>

-CF
2007-09-10 14:27:44
http://php5.kiev.ua/manual/ru/function.win32-ps-list-procs.html

    Поддержать сайт на родительском проекте КГБ