dongqu4443 2013-08-18 00:13
浏览 167
已采纳

PHP shell_exec(),exec()和system()仅返回部分输出

I am trying to use a PHP script to run the siege command and capture the output.

Running the following in the shell provides these results:

$ /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

When running the same command in PHP via exec(), shell_exec(), system(), I only receive the following output.

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

Since I'm really only interested in the results provided by siege, this data is useless to me. For some reason its ignoring the results of the siege.

Here's an example of what I'm doing in PHP...

exec('/usr/local/bin/siege -c30 -t30s -f urls.txt', $output);
  • 写回答

1条回答 默认 最新

  • doumingo04696 2013-08-18 01:03
    关注

    The siege program writes its output to two different standard streams: stdout and stderr. PHP's exec() only captures stdout. To capture both, you need to redirect (using your shell) stderr to stdout so that everything is in the one stream that PHP captures.

    To do this, add 2>&1 at the very end of your command. In your example, that would be:

    exec('/usr/local/bin/siege -c30 -t30s -f urls.txt 2>&1', $output);
    

    (I have installed siege and verified that it uses both stdout and stderr and that the output redirection works.)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器