Home  >  Article  >  Backend Development  >  关于PHP的exec函数,该如何处理

关于PHP的exec函数,该如何处理

WBOY
WBOYOriginal
2016-06-13 13:28:171035browse

关于PHP的exec函数
我在php文件中写了如下代码:
 $cmd="svn checkout https://..../server/svnconf";
 exec($cmd,$results);
我在浏览器中访问这个页面,没有任何结果,
直接在linux上执行cmd包含的命令可以用,用php命令执行这个php文件也有结果输出,请问这是怎么回事?要怎么改?


------解决方案--------------------

探讨
我在php文件中写了如下代码:
$cmd="svn checkout https://..../server/svnconf";
exec($cmd,$results);
我在浏览器中访问这个页面,没有任何结果,
直接在linux上执行cmd包含的命令可以用,用php命令执行这个php文件也有结果输出,请问这是怎么回事?要怎么改?

------解决方案--------------------
试着用启动apache或者nginx的用户执行下就知道了
------解决方案--------------------
svn 有加到$PATH中吗
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn