简体   繁体   中英

Running a PHP "exec()" in the background on Windows?

I've created a script that uses psexec to call another script which calls psexec to run a command line program of mine.

The reason for so many calls to psexec and other scripts is solely so that my PHP script doesn't have to wait for the process to finish before finishing it's output to the browser.

Is there a way I can do this without needing to use psexec? I'm having issues with psexec so I'd like to just completely remove it from my program.

I'm running Windows 2008

EDIT: I changed the title, I guess this would be a more accurate title. I found out the If a program is started with this function, in order for it to continue running in the background, the output of the program must be redirected to a file or another output stream. Failing to do so will cause PHP to hang until the execution of the program ends. If a program is started with this function, in order for it to continue running in the background, the output of the program must be redirected to a file or another output stream. Failing to do so will cause PHP to hang until the execution of the program ends. on php.net's page on exec() , but wasn't sure how to do that.

Include a redirection in the command line:

exec('program.exe > NUL')

or you could modify your program to explicitly close standard output, in C this would be

CloseHandle(GetStdHandle(STD_OUTPUT_HANDLE));

It is possible (the documentation doesn't say) that you might need to redirect/close both the standard output and standard error:

exec('program.exe > NUL 2> NUL')

or

CloseHandle(GetStdHandle(STD_OUTPUT_HANDLE));
CloseHandle(GetStdHandle(STD_ERROR_HANDLE));
$command = 'start /B program.exe  > NUL';
pclose( popen( $command, 'r' ) );

For more info: http://humblecontributions.blogspot.com/2012/12/how-to-run-php-process-in-background.html

试试 Windows 的“ start ”命令: http ://technet.microsoft.com/en-us/library/cc770297%28WS.10%29.aspx

Using start /B has certain limitations when calling scripts that are spawning sub-processes. The following method spawns a sub-process using PowerShell to handle such cases:

function execInBackgroundWindows($filePath, $workingDirectory, $arguments) 
{
    $cmd = "powershell.exe Start-Process -FilePath $filePath -WorkingDirectory $workingDirectory -ArgumentList '$arguments'";
    shell_exec($cmd);
} 

execInBackgroundWindows('curl.exe','c:\temp','-X POST -H "Content-Type: application/json" -d @test.json http://127.0.0.1:4000/myapp');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM