PHP viewing WINDOWS system processes

Source: Internet
Author: User
: This article mainly introduces PHP to view WINDOWS system processes. For more information about PHP tutorials, see.

/*
**查看WINDOWS系统进程列表,并查找指定进程是否存在
*/$tasklist = $_SERVER["WINDIR"]."/system32/tasklist.exe"; //找到windows系统下tasklist的路径
//print($tasklist); //打印tasklist的路径@exec($tasklist,$arr); //运行tasklist.exe,返回一个数组$arr
//print_r($arr); //打印数组
//用循环打印进程列表foreach($arr as $value){
$list = explode(" ",$value);
print($list[0].'
');
//查找指定进程并打印 /* if('php.exe'==$list[0]){
echo $info[0].'
';
} */
}
?>

以上就介绍了PHP查看WINDOWS系统进程,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.