I’m running PHP on win XP and I’m using exec() for some stuff in my program but every time the exec() is running a cmd.exe window is opened for a few seconds on the server. How can I make it run in the background ?
I’m running PHP on win XP and I’m using exec() for some stuff in
Share
Prefix the command with
start /B.https://www.php.net/manual/function.exec.php#86329