如何通过PHP执行SVN的更新命令?我正在使用TortoiseSVN。在“cmd.exe”中,以下命令有效:
"C:\Program Files\TortoiseSVN\bin\svn.exe" export https://server:8443/project "c:\project"
当使用php“exec”函数时,它突然没有。
答案 0 :(得分:0)
您的PHP配置需要允许shell函数(即:不在disable_functions
指令中)。
然后,尝试使用命令:var_dump(shell_exec($cmd))