Answers for "php execute script wait for response"

PHP
0

php execute script wait for response

exec('sh somescript.sh');//this will wait for script to finish
exec('sh somescript.sh >/dev/null 2>&1 &'); //this will NOT wait
Posted by: Guest on July-29-2021

Code answers related to "php execute script wait for response"

Browse Popular Code Answers by Language