我正在尝试使用PHP脚本来运行siege命令并捕获输出。
在shell中运行以下内容可提供以下结果:
$ /usr/local/bin/siege -c30 -t30s -f urls.txt
.....
HTTP/1.1 200 0.10 secs: 11246 bytes ==> GET /*******.html
HTTP/1.1 200 0.11 secs: 11169 bytes ==> GET /*******.html
HTTP/1.1 200 0.10 secs: 11246 bytes ==> GET /*******.html
Lifting the server siege.. done.
Transactions: 1479 hits
Availability: 100.00 %
Elapsed time: 29.05 secs
Data transferred: 14.69 MB
Response time: 0.10 secs
Transaction rate: 50.91 trans/sec
Throughput: 0.51 MB/sec
Concurrency: 5.33
Successful transactions: 1479
Failed transactions: 0
Longest transaction: 0.16
Shortest transaction: 0.09
当通过exec(),shell_exec(),system()在PHP中运行相同的命令时,我只收到以下输出。
HTTP/1.1 200 0.10 secs: 11246 bytes ==> GET /*******.html
HTTP/1.1 200 0.11 secs: 11169 bytes ==> GET /*******.html
HTTP/1.1 200 0.10 secs: 11246 bytes ==> GET /*******.html
因为我真的只对围攻提供的结果感兴趣,所以这些数据对我来说毫无用处。由于某种原因,它无视围攻的结果。
以下是我在PHP中所做的一个例子......
exec('/usr/local/bin/siege -c30 -t30s -f urls.txt', $output);
答案 0 :(得分:4)
围攻程序将其输出写入两个不同的standard streams:stdout
和stderr
。 PHP exec()
仅捕获stdout
。要捕获这两者,您需要redirect (using your shell) stderr
到stdout
,以便所有内容都在PHP捕获的一个流中。
为此,请在命令的最后添加2>&1
。在您的示例中,那将是:
exec('/usr/local/bin/siege -c30 -t30s -f urls.txt 2>&1', $output);
(我已经安装了siege并验证它使用了stdout和stderr以及输出重定向是否有效。)