“PHP esperar a que termine EXEC” Código de respuesta

PHP esperar a que termine EXEC

PHP exec will wait until the execution of the called program is finished,
before processing the next line,
unless you use & at the end of the string to run the program in background.
Singh99

PHP Ejecutar script Wait for Respuesta

exec('sh somescript.sh');//this will wait for script to finish
exec('sh somescript.sh >/dev/null 2>&1 &'); //this will NOT wait 
Friendly Hawk

Respuestas similares a “PHP esperar a que termine EXEC”

Preguntas similares a “PHP esperar a que termine EXEC”

Más respuestas relacionadas con “PHP esperar a que termine EXEC” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código