使用exec()运行带参数的控制台应用程序

时间:2012-04-04 16:29:09

标签: php cmd exec

我可以使用windows命令行调用以下exe,但是使用exec()函数,它不起作用。

我必须将目录作为参数传递给该exe文件。

更新:

$command = '""C:\\Users\\cArn\\Documents\\Visual Studio 2010\\Projects\\word_to_pdf\\word_to_pdf\\bin\\Debug\\word_to_pdf.exe" "C:\\wamp\\www\\zabjournal\\files\\journals\\1\\articles""';
exec($command);

似乎仍无效。

2 个答案:

答案 0 :(得分:1)

使用单引号'代替

$command = 'C:\Users\cArn\Documents\Visual Studio 2010\Projects\word_to_pdf\word_to_pdf\bin\Debug\word_to_pdf.exe C:\wamp\www\zabjournal\files\journals\1\articles';
exec($command);

由于

:)

答案 1 :(得分:0)

尝试

passthru($command)取而代之的是exec()