shell_exec 与“svnadmin verify”什么也不返回
我想从 shell_exec() 给出 svnadmin verify 命令的输出,
var_dump(shell_exec('/usr/bin/svnadmin verify /Users/osman/Desktop/SVN/name'));
但它返回“null”。 我如何访问 svnadmin verify 的响应?
我在 Mac OS X Snow Leopard 上使用 PHP 5.3.2
I want to give output of svnadmin verify command from shell_exec()
var_dump(shell_exec('/usr/bin/svnadmin verify /Users/osman/Desktop/SVN/name'));
But it returns 'null'.
How can i access the response of svnadmin verify ?
Im working with PHP 5.3.2 on Mac OS X Snow Leopard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们遇到了类似的问题,并且能够使用 http://www 获取结果.php.net/manual/en/function.passthru.php
We had a similar issue and were able to get results back using http://www.php.net/manual/en/function.passthru.php
此错误可能是由
php.ini
中的disable_functions
设置引起的(或
suhosin.executor.func.whitelist
表示安装了 Suhosin)。您可以在此处查看以覆盖它:覆盖全局 php.ini 文件
This error may be caused by the
disable_functions
setting inphp.ini
(or
suhosin.executor.func.whitelist
is Suhosin is installed).You can have a look here to override it : Overriding global php.ini file