shell_exec('hg clone http://localhost/hg/TestProject/')... 不工作

发布于 2024-10-08 00:38:16 字数 212 浏览 3 评论 0原文

有人可以让我知道为什么我无法使用以下代码克隆本地存储库:

$output = shell_exec('hg clone http://localhost/hg/TestProject/');

echo "<pre>$output</pre>";

输出是“127”。怎么了?它通过终端完美运行。

谢谢。

Can someone let me know why I'm unable to clone local repos using the following code:

$output = shell_exec('hg clone http://localhost/hg/TestProject/');

echo "<pre>$output</pre>";

The output is "127". What's wrong? It's working perfectly through terminal.

Thanks.

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

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

发布评论

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

评论(2

如果没结果 2024-10-15 00:38:16

当 X 不存在时,sh -c X 返回 127。这可能意味着执行脚本时 hg 不在路径中。您可以运行 which hg 来找出完整路径是什么并提供它(我的是 /usr/bin/hg),或者您可以设置 PATH 环境变量这样就可以找到hg

sh -c X returns 127 when X does not exist. This probably means hg is not in the path when you execute the script. You could run which hg to find out what the full path is and supply that instead (mine is /usr/bin/hg), or you could set the PATH environment variable so that hg can be found.

油饼 2024-10-15 00:38:16

似乎 PHP 找不到 hg 可执行文件。
尝试指定 hg 的完整路径

Seems that PHP can't find the hg executable.
Try to specify the full path to hg

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