[PHP][TIP] exec 혹은 shell_exec 비동기로 처리하기

2021. 1. 6. 17:14 PHP/php

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

 

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

 

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


출처: https://chobokkiri.tistory.com/61?category=656563 [초보끼리]