exec 나 shell_exec 를 비동기로 처리해야할 때가 있다. 그때는 명령어 뒤에 " > /dev/null 2>/dev/null &"를 붙혀주면 된다

exec("실행할 명령" . " > /dev/null 2>/dev/null &")
shell_exec("실행할 명령" . " > /dev/null 2>/dev/null &")


+ Recent posts