local-commands:一个PHP库,用于执行本地shell命令,并支持退出状态,标准输出和错误输出

时间:2024-05-29 07:55:33
【文件属性】:

文件名称:local-commands:一个PHP库,用于执行本地shell命令,并支持退出状态,标准输出和错误输出

文件大小:10KB

文件格式:ZIP

更新时间:2024-05-29 07:55:33

PHP

本地命令 一个用于执行本地Shell命令的库,并支持退出状态,标准输出和错误输出。 存在的原因是,如果您想从命令中获取错误输出之类的内容,则需要大量样板代码。 安装 curl -s http://getcomposer.org/installer | php php composer.phar require cullylarson/local-commands 用法 创建一个Cully\Local\Command实例。 <?php $command = new Cully\Local\Command(); 执行您的命令。 <?php $command->exec("ls"); 此时,您可以访问一些结果: <?php $command->success(); // whether the command succeeded $command->failure();


【文件预览】:
local-commands-master
----src()
--------Cully()
----phpunit.xml.dist(576B)
----composer.lock(33KB)
----README.md(1KB)
----tests()
--------Cully()
--------phpunit-bootstrap.php(665B)
----.gitignore(134B)
----composer.json(573B)

网友评论