shell_exec('hg clone http://localhost/hg/TestProject/')... 不工作
有人可以让我知道为什么我无法使用以下代码克隆本地存储库:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当 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 meanshg
is not in the path when you execute the script. You could runwhich 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 thathg
can be found.似乎 PHP 找不到 hg 可执行文件。
尝试指定 hg 的完整路径
Seems that PHP can't find the hg executable.
Try to specify the full path to hg