amphp/process

AMPHP is a collection of event-driven libraries for PHP designed with fibers and concurrency in mind. amphp/process provides an asynchronous process dispatcher that works on all major platforms (including Windows). It makes running child processes simple.

As Windows pipes are file handles and do not allow non-blocking access, this package makes use of a process wrapper, that provides access to these pipes via sockets. On Unix-like systems it uses the standard pipes, as these can be accessed without blocking there. Concurrency is managed by the Revolt event loop.

Installation

This package can be installed as a Composer dependency.

composer require amphp/process

The package requires PHP 8.1 or later.

Usage

Processes are started with Process::start():

<?php require __DIR__ . "/vendor/autoload.php"; use AmpByteStream; use AmpProcessProcess; // "echo" is a shell internal command on Windows and doesn't work. $command = DIRECTORY_SEPARATOR === "" ? "cmd /c echo Hello World!" : "echo 'Hello, world!'"; $process = Process::start($command); Ampasync(fn () => AmpByteStreampipe($process->getStdout(), ByteStreamgetStdout())); Ampasync(fn () => AmpByteStreampipe($process->getStderr(), ByteStreamgetStderr())); $exitCode = $process->join(); echo "Process exited with {$exitCode}.n";

Custom Working Directory

Processes are started with the working directory of the current process by default. The working directory can be customized to another directory if needed:

$process = AmpProcessProcess::start($command, workingDirectory: '/path/of/your/dreams');

Custom Environment Variables

Processes are started with the environment variables of the current process by default. The environment can be customized by passing an associative array mapping variables names to their values:

$process = AmpProcessProcess::start($command, environment: [ 'PATH' => '/usr/bin/local' ]);

Versioning

amphp/process follows the semver semantic versioning specification like all other amphp packages.

Security

If you discover any security related issues, please use the private security issue reporter instead of using the public issue tracker.

License

The MIT License (MIT). Please see LICENSE for more information.

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。