Is there something like this for Windows?
exec("nohup /usr/bin/php -f sleep.php > /dev/null 2>&1 &");
See Question&Answers more detail:osIs there something like this for Windows?
exec("nohup /usr/bin/php -f sleep.php > /dev/null 2>&1 &");
See Question&Answers more detail:osIt's not that hard (albeit with some minor differences)... You just need to use the WScript.Shell
COM object:
$shell = new COM("WScript.Shell");
$shell->run($command, 0, false);
That's it...