我在Windows Server上使用XAMPP(不再在办公室,明天会添加确切的版本)。
今天我偶然发现了这种非常奇怪的行为:
当使用exec()
执行程序时,某些命令会起作用,其他命令会在没有任何理由的情况下失败。
//working
exec("dir", $output, $retval);
//$retval = 0;
//$output = array with response-lines
它似乎与我的wkhtmltopdf.exe一样好用:
//working as well
exec("C:\some_path\wkhtmltopdf.exe --help", $output, $retval);
//$retval = 0;
//$output = array with lines from the help-file
但是一旦它变得有点复杂,它就会失败:
//not working
exec("C:\some_path\wkhtmltopdf.exe C:\other_path\test.html C:\target_path\test.pdf", $output, $retval);
//$retval = 1;
//$output = array with 11 empty strings ?!?!
当我使用rdp将完全相同的字符串复制到服务器机器,并在windows-shell(cmd)中使用它时,它可以工作。
我不知道发生了什么事 - 我很难回到一个有11个空字符串的数组。
感谢您的帮助或提示!
答案 0 :(得分:1)
我认为问题是参数中的斜杠:
$input = 'C:\other_path\test.html';
$target = 'C:\target_path\test.pdf';
exec("C:\some_path\wkhtmltopdf.exe '$input' '$target'", $output, $retval);
您不必像这样对其进行编码,但请尝试使用'
封装路径。
以上代码的结果如下:
exec("C:\some_path\wkhtmltopdf.exe 'C:\other_path\test.html' 'C:\target_path\test.pdf'", $output, $retval);
您也可以尝试转义斜杠:
exec("C:\some_path\wkhtmltopdf.exe C:\\other_path\\test.html C:\\target_path\\test.pdf", $output, $retval);
但这是一个混乱的代码。