devium/processes
最新稳定版本:1.1.1
Composer 安装命令:
composer require devium/processes
包简介
This package is used to get a list of running processes on Windows or Unix-like systems, even Darwin
README 文档
README
devium/processes
This package is used to get a list of running processes on Windows or Unix-like systems, even Darwin.
Thanks to fastlist for processes on Windows.
Installation
composer require devium/processes
Usage
use Devium\Processes\Processes; // some PID, integer $pid = 1234; // get all processes except both session leaders, default false $all = true; $processes = new Processes($all); $exists = $processes->exists($pid); // returns true of false $arrayOfProcesses = $processes->get(); // returns array of processes where key is PID // for rescanning processes, call rescan() method $newArrayOfProcesses = $processes->rescan()->get(); // if you only need an array of processes, just use the static asArray(): $listOfProcesses = Processes::asArray();
Structure of processes array
For windows
{
"PID": {
"pid": "integer",
"ppid": "integer",
"name": "string"
}
}
For unix-like systems
{
"PID": {
"pid": "integer",
"ppid": "integer",
"name": "string",
"uid": "integer",
"cpu": "float",
"memory": "float",
"cmd": "string"
}
}
Testing
composer test
License
devium/processes is open-sourced software licensed under the MIT license.
Made with ❤️ in Ukraine
统计信息
- 总下载量: 24.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 24
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-12