PHP에서 exec() 함수는 명령을 실행하고 명령의 stdout에서 출력을 반환합니다. 그러나 명령이 stderr에 기록되면 이 출력은 exec()에 의해 캡처되지 않습니다.
명령에서 stdout과 stderr을 모두 캡처하려면 proc_open() 함수를 사용할 수 있습니다. proc_open()은 명령의 stdin, stdout 및 stderr 스트림을 파이프하는 기능을 포함하여 명령 실행 프로세스에 대한 더 높은 수준의 제어를 제공합니다.
예:
stderr과 stderr 모두에 쓰는 다음 셸 스크립트 test.sh를 고려해 보겠습니다. stdout:
#!/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 스트림이 표시됩니다.
위 내용은 PHP의 Exec() 명령에서 stdout과 stderr을 모두 캡처하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!