svnlook 通过 php 给出一行

发布于 2024-12-03 06:39:03 字数 221 浏览 4 评论 0原文

我有一个简单的 php exec 命令来调用 svnlook。如果我通过终端运行命令,我会得到我期望的所有输出。如果我如下所示运行它,我只会得到最后一项。

$list = exec("svnlook changed -r ".$urlCleaned." ".$SVNEXPORT); 
echo $list;

我可以缓冲输出吗?如果是这样怎么办?这会有帮助吗?

I have a simple php exec command that calls svnlook. If I run the command through the terminal I get all the output I expect. If I run it as shown below, I only get the last item.

$list = exec("svnlook changed -r ".$urlCleaned." ".$SVNEXPORT); 
echo $list;

Can I buffer the output? If so how? And will that help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗化ㄋ丶相逢 2024-12-10 06:39:03

这是设计使然,并进行了解释:

string exec ( string $command [, array &$output [, int &$return_var ]] )

返回值

命令结果的最后一行。如果您需要执行命令并将命令中的所有数据直接传回而不受任何干扰,请使用 passthru() 函数。

要获取执行命令的输出,请务必设置并使用output参数。

http://php.net/manual/en/function.exec.php

exec("svnlook changed -r ".$urlCleaned." ".$SVNEXPORT, $output);
var_dump($output);

或者, shell_exec 返回所有内容。

That's by design and is explained:

string exec ( string $command [, array &$output [, int &$return_var ]] )

Return Values

The last line from the result of the command. If you need to execute a command and have all the data from the command passed directly back without any interference, use the passthru() function.

To get the output of the executed command, be sure to set and use the output parameter.

http://php.net/manual/en/function.exec.php

exec("svnlook changed -r ".$urlCleaned." ".$SVNEXPORT, $output);
var_dump($output);

Alternatively, shell_exec returns everything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文