Reputation: 1680
there is a python script
StartDeploy.py
and i want to run this file from PHP without waiting for it's completion.
what can i do?
Upvotes: 0
Views: 975
Reputation:
You can try:
exec('python StartDeploy.py > /dev/null &');
It's for Linux.
Upvotes: 1