$cmdOutput = shell_exec("perl run_single_test/hello.pl");
echo "the command output = $cmdOutput";
这会导致文件hello.pl
执行并打印“hello world back to page”。但
shell_exec("perl run_single_test/test_single_run.pl -s \"$testSuiteName\" -t \"$testName\" -i $time");
不会被执行。我将命令回显到屏幕并在终端上运行,Perl 脚本完美执行。test_single_run.pl
创建一个日志文件并复制一些文件。
我错过了什么?