php TortoiseSVN exec - export命令

时间:2013-07-01 19:07:40

标签: php windows svn tortoisesvn exec

如何通过PHP执行SVN的更新命令?我正在使用TortoiseSVN。在“cmd.exe”中,以下命令有效:

"C:\Program Files\TortoiseSVN\bin\svn.exe" export https://server:8443/project "c:\project"

当使用php“exec”函数时,它突然没有。

1 个答案:

答案 0 :(得分:0)

您的PHP配置需要允许shell函数(即:不在disable_functions指令中)。

然后,尝试使用命令:var_dump(shell_exec($cmd))