PHP에서 exec() 함수는 명령을 실행하고 명령의 stdout에서 출력을 반환합니다. 그러나 명령이 stderr에 기록되면 이 출력은 exec()에 의해 캡처되지 않습니다.
명령에서 stdout과 stderr을 모두 캡처하려면 proc_open() 함수를 사용할 수 있습니다. proc_open()은 명령의 stdin, stdout 및 stderr 스트림을 파이프하는 기능을 포함하여 명령 실행 프로세스에 대한 더 높은 수준의 제어를 제공합니다.
예:
stderr과 stderr 모두에 쓰는 다음 셸 스크립트 test.sh를 고려해 보겠습니다. 표준 출력:
#!/bin/bash echo 'this is on stdout'; echo 'this is on stdout too'; echo 'this is on stderr' >&2; echo 'this is on stderr too' >&2;
PHP에서 이 스크립트를 실행하고 stdout과 stderr을 모두 캡처하려면 다음 코드를 사용할 수 있습니다:
$descriptorspec = [ 0 => ['pipe', 'r'], // stdin 1 => ['pipe', 'w'], // stdout 2 => ['pipe', 'w'], // stderr ]; $process = proc_open('./test.sh', $descriptorspec, $pipes, dirname(__FILE__), null); $stdout = stream_get_contents($pipes[1]); fclose($pipes[1]); $stderr = stream_get_contents($pipes[2]); fclose($pipes[2]); echo "stdout : \n"; var_dump($stdout); echo "stderr :\n"; var_dump($stderr);
출력:
위의 PHP 스크립트를 실행하면 다음과 같은 출력을 얻게 됩니다:
stdout : string(40) "this is on stdout this is on stdout too" stderr : string(40) "this is on stderr this is on stderr too"
출력에는 test.sh 스크립트의 stdout 및 stderr 스트림이 표시됩니다.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3